123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050 |
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Frontend
- */
- /**
- * This class handles the Breadcrumbs generation and display.
- */
- class WPSEO_Breadcrumbs {
- /**
- * Instance of this class.
- *
- * @var object
- */
- public static $instance;
- /**
- * Last used 'before' string.
- *
- * @var string
- */
- public static $before = '';
- /**
- * Last used 'after' string.
- *
- * @var string
- */
- public static $after = '';
- /**
- * The date helper.
- *
- * @var WPSEO_Date_Helper
- */
- protected $date;
- /**
- * Blog's show on front setting, 'page' or 'posts'.
- *
- * @var string
- */
- private $show_on_front;
- /**
- * Blog's page for posts setting, page id or false.
- *
- * @var mixed
- */
- private $page_for_posts;
- /**
- * Current post object.
- *
- * @var mixed
- */
- private $post;
- /**
- * HTML wrapper element for a single breadcrumb element.
- *
- * @var string
- */
- private $element = 'span';
- /**
- * Yoast SEO breadcrumb separator.
- *
- * @var string
- */
- private $separator = '';
- /**
- * HTML wrapper element for the Yoast SEO breadcrumbs output.
- *
- * @var string
- */
- private $wrapper = 'span';
- /**
- * Array of crumbs.
- *
- * Each element of the crumbs array can either have one of these keys:
- * "id" for post types;
- * "ptarchive" for a post type archive;
- * "term" for a taxonomy term.
- * OR it consists of a predefined set of 'text', 'url' and 'allow_html'.
- *
- * @var array
- */
- private $crumbs = [];
- /**
- * Count of the elements in the $crumbs property.
- *
- * @var array
- */
- private $crumb_count = 0;
- /**
- * Array of individual (linked) html strings created from crumbs.
- *
- * @var array
- */
- private $links = [];
- /**
- * Breadcrumb html string.
- *
- * @var string
- */
- private $output;
- /**
- * Holds the WooCommerce shop page instance.
- *
- * @var WPSEO_WooCommerce_Shop_Page
- */
- private $woocommerce_shop_page;
- /**
- * Create the breadcrumb.
- */
- protected function __construct() {
- $this->post = ( isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null );
- $this->show_on_front = get_option( 'show_on_front' );
- $this->page_for_posts = get_option( 'page_for_posts' );
- $this->woocommerce_shop_page = new WPSEO_WooCommerce_Shop_Page();
- $this->date = new WPSEO_Date_Helper();
- $this->filter_element();
- $this->filter_separator();
- $this->filter_wrapper();
- $this->set_crumbs();
- $this->prepare_links();
- $this->links_to_string();
- $this->wrap_breadcrumb();
- }
- /**
- * Get breadcrumb string using the singleton instance of this class.
- *
- * @param string $before Optional string to prepend.
- * @param string $after Optional string to append.
- * @param bool $display Echo or return flag.
- *
- * @return string Returns the breadcrumbs as a string.
- */
- public static function breadcrumb( $before = '', $after = '', $display = true ) {
- // Remember the last used before/after for use in case the object goes __toString().
- self::$before = $before;
- self::$after = $after;
- $instance = self::get_instance();
- $output = $before . $instance->output . $after;
- if ( $display === true ) {
- echo $output;
- return '';
- }
- return $output;
- }
- /**
- * Magic method to use in case the class would be send to string.
- *
- * @return string
- */
- public function __toString() {
- return self::$before . $this->output . self::$after;
- }
- /**
- * Retrieves an instance of the class.
- *
- * @return WPSEO_Breadcrumbs The instance.
- */
- public static function get_instance() {
- if ( ! ( self::$instance instanceof self ) ) {
- self::$instance = new self();
- }
- return self::$instance;
- }
- /**
- * Returns the collected links for the breadcrumbs.
- *
- * @return array The collected links.
- */
- public function get_links() {
- return $this->links;
- }
- /**
- * Returns the link url for a single id.
- *
- * When the target is private and the user isn't allowed to access it, just return an empty string.
- *
- * @param int $id The target id.
- *
- * @return string Empty string when post isn't accessible. An URL if accessible.
- */
- protected function get_link_url_for_id( $id ) {
- $post_status = get_post_status( $id );
- $post_type = get_post_type_object( get_post_type( $id ) );
- // Don't link if item is private and user does't have capability to read it.
- if ( $post_status === 'private' && $post_type !== null && ! current_user_can( $post_type->cap->read_private_posts ) ) {
- return '';
- }
- $url = get_permalink( $id );
- if ( $url === false ) {
- return '';
- }
- return $url;
- }
- /**
- * Filter: 'wpseo_breadcrumb_single_link_wrapper' - Allows developer to change or wrap each breadcrumb element.
- *
- * @api string $element
- */
- private function filter_element() {
- $this->element = esc_attr( apply_filters( 'wpseo_breadcrumb_single_link_wrapper', $this->element ) );
- }
- /**
- * Filter: 'wpseo_breadcrumb_separator' - Allow (theme) developer to change the Yoast SEO breadcrumb separator.
- *
- * @api string $breadcrumbs_sep Breadcrumbs separator.
- */
- private function filter_separator() {
- $separator = apply_filters( 'wpseo_breadcrumb_separator', WPSEO_Options::get( 'breadcrumbs-sep' ) );
- $this->separator = ' ' . $separator . ' ';
- }
- /**
- * Filter: 'wpseo_breadcrumb_output_wrapper' - Allow changing the HTML wrapper element for the Yoast SEO breadcrumbs output.
- *
- * @api string $wrapper The wrapper element.
- */
- private function filter_wrapper() {
- $wrapper = apply_filters( 'wpseo_breadcrumb_output_wrapper', $this->wrapper );
- $wrapper = tag_escape( $wrapper );
- if ( is_string( $wrapper ) && '' !== $wrapper ) {
- $this->wrapper = $wrapper;
- }
- }
- /**
- * Get a term's parents.
- *
- * @param object $term Term to get the parents for.
- *
- * @return array
- */
- private function get_term_parents( $term ) {
- $tax = $term->taxonomy;
- $parents = [];
- while ( $term->parent !== 0 ) {
- $term = get_term( $term->parent, $tax );
- $parents[] = $term;
- }
- return array_reverse( $parents );
- }
- /**
- * Find the deepest term in an array of term objects.
- *
- * @param array $terms Terms set.
- *
- * @return object
- */
- private function find_deepest_term( $terms ) {
- /*
- * Let's find the deepest term in this array, by looping through and then
- * unsetting every term that is used as a parent by another one in the array.
- */
- $terms_by_id = [];
- foreach ( $terms as $term ) {
- $terms_by_id[ $term->term_id ] = $term;
- }
- foreach ( $terms as $term ) {
- unset( $terms_by_id[ $term->parent ] );
- }
- unset( $term );
- /*
- * As we could still have two subcategories, from different parent categories,
- * let's pick the one with the lowest ordered ancestor.
- */
- $parents_count = 0;
- $term_order = 9999; // Because ASC.
- reset( $terms_by_id );
- $deepest_term = current( $terms_by_id );
- foreach ( $terms_by_id as $term ) {
- $parents = $this->get_term_parents( $term );
- if ( count( $parents ) >= $parents_count ) {
- $parents_count = count( $parents );
- $parent_order = 9999; // Set default order.
- foreach ( $parents as $parent ) {
- if ( $parent->parent === 0 && isset( $parent->term_order ) ) {
- $parent_order = $parent->term_order;
- }
- }
- unset( $parent );
- // Check if parent has lowest order.
- if ( $parent_order < $term_order ) {
- $term_order = $parent_order;
- $deepest_term = $term;
- }
- }
- }
- return $deepest_term;
- }
- /**
- * Retrieve the hierachical ancestors for the current 'post'.
- *
- * @return array
- */
- private function get_post_ancestors() {
- $ancestors = [];
- if ( isset( $this->post->ancestors ) ) {
- if ( is_array( $this->post->ancestors ) ) {
- $ancestors = array_values( $this->post->ancestors );
- }
- else {
- $ancestors = [ $this->post->ancestors ];
- }
- }
- elseif ( isset( $this->post->post_parent ) ) {
- $ancestors = [ $this->post->post_parent ];
- }
- /**
- * Filter: Allow changing the ancestors for the Yoast SEO breadcrumbs output.
- *
- * @api array $ancestors Ancestors.
- */
- $ancestors = apply_filters( 'wp_seo_get_bc_ancestors', $ancestors );
- if ( ! is_array( $ancestors ) ) {
- trigger_error( 'The return value for the "wp_seo_get_bc_ancestors" filter should be an array.', E_USER_WARNING );
- $ancestors = (array) $ancestors;
- }
- // Reverse the order so it's oldest to newest.
- $ancestors = array_reverse( $ancestors );
- return $ancestors;
- }
- /**
- * Determine the crumbs which should form the breadcrumb.
- */
- private function set_crumbs() {
- global $wp_query;
- $this->maybe_add_home_crumb();
- $this->maybe_add_blog_crumb();
- // Ignore coding standards for empty if statement.
- // @codingStandardsIgnoreStart
- if ( $this->is_front_page() ) {
- // Do nothing.
- // @codingStandardsIgnoreEnd
- }
- elseif ( $this->show_on_front === 'page' && is_home() ) {
- $this->add_blog_crumb();
- }
- elseif ( is_singular() ) {
- $this->maybe_add_pt_archive_crumb_for_post();
- if ( isset( $this->post->post_parent ) && 0 === $this->post->post_parent ) {
- $this->maybe_add_taxonomy_crumbs_for_post();
- }
- if ( isset( $this->post->post_parent ) && $this->post->post_parent !== 0 ) {
- $this->add_post_ancestor_crumbs();
- }
- if ( isset( $this->post->ID ) ) {
- $this->add_single_post_crumb( $this->post->ID );
- }
- }
- elseif ( is_post_type_archive() ) {
- if ( $this->woocommerce_shop_page->is_shop_page() &&
- $this->woocommerce_shop_page->get_shop_page_id() !== -1
- ) {
- $this->add_single_post_crumb( $this->woocommerce_shop_page->get_shop_page_id() );
- }
- else {
- $post_type = $wp_query->get( 'post_type' );
- if ( $post_type && is_string( $post_type ) ) {
- $this->add_ptarchive_crumb( $post_type );
- }
- }
- }
- elseif ( is_tax() || is_tag() || is_category() ) {
- $this->add_crumbs_for_taxonomy();
- }
- elseif ( is_date() ) {
- if ( is_day() ) {
- $this->add_linked_month_year_crumb();
- $this->add_date_crumb();
- }
- elseif ( is_month() ) {
- $this->add_month_crumb();
- }
- elseif ( is_year() ) {
- $this->add_year_crumb();
- }
- }
- elseif ( is_author() ) {
- $user = $wp_query->get_queried_object();
- $display_name = get_the_author_meta( 'display_name', $user->ID );
- $this->add_predefined_crumb(
- WPSEO_Options::get( 'breadcrumbs-archiveprefix' ) . ' ' . $display_name,
- null,
- true
- );
- }
- elseif ( is_search() ) {
- $this->add_predefined_crumb(
- WPSEO_Options::get( 'breadcrumbs-searchprefix' ) . ' “' . esc_html( get_search_query() ) . '”',
- null,
- true
- );
- }
- elseif ( is_404() ) {
- $this->add_predefined_crumb(
- WPSEO_Options::get( 'breadcrumbs-404crumb' ),
- null,
- true
- );
- }
- $this->maybe_add_page_crumb();
- /**
- * Filter: 'wpseo_breadcrumb_links' - Allow the developer to filter the Yoast SEO breadcrumb links, add to them, change order, etc.
- *
- * @api array $crumbs The crumbs array.
- */
- $this->crumbs = apply_filters( 'wpseo_breadcrumb_links', $this->crumbs );
- $this->crumb_count = count( $this->crumbs );
- }
- /**
- * Determine whether we are on the front page of the site.
- *
- * @return bool
- */
- private function is_front_page() {
- if ( $this->show_on_front === 'page' && is_front_page() ) {
- return true;
- }
- if ( $this->show_on_front === 'posts' && is_home() ) {
- return true;
- }
- return false;
- }
- /**
- * Add a single id based crumb to the crumbs property.
- *
- * @param int $id Post ID.
- */
- private function add_single_post_crumb( $id ) {
- $this->crumbs[] = [
- 'id' => $id,
- ];
- }
- /**
- * Add a term based crumb to the crumbs property.
- *
- * @param object $term Term data object.
- */
- private function add_term_crumb( $term ) {
- $this->crumbs[] = [
- 'term' => $term,
- ];
- }
- /**
- * Add a ptarchive based crumb to the crumbs property.
- *
- * @param string $pt Post type.
- */
- private function add_ptarchive_crumb( $pt ) {
- $this->crumbs[] = [
- 'ptarchive' => $pt,
- ];
- }
- /**
- * Add a predefined crumb to the crumbs property.
- *
- * @param string $text Text string.
- * @param string $url URL string.
- * @param bool $allow_html Flag to allow HTML.
- */
- private function add_predefined_crumb( $text, $url = '', $allow_html = false ) {
- $this->crumbs[] = [
- 'text' => $text,
- 'url' => $url,
- 'allow_html' => $allow_html,
- ];
- }
- /**
- * Add Homepage crumb to the crumbs property.
- */
- private function maybe_add_home_crumb() {
- if ( WPSEO_Options::get( 'breadcrumbs-home' ) !== '' ) {
- $this->add_predefined_crumb(
- WPSEO_Options::get( 'breadcrumbs-home' ),
- WPSEO_Utils::home_url(),
- true
- );
- }
- }
- /**
- * Add Blog crumb to the crumbs property.
- */
- private function add_blog_crumb() {
- $this->add_single_post_crumb( $this->page_for_posts );
- }
- /**
- * Add Blog crumb to the crumbs property for single posts where Home != blogpage.
- *
- * @return void
- */
- private function maybe_add_blog_crumb() {
- // When the show blog page is not enabled.
- if ( WPSEO_Options::get( 'breadcrumbs-display-blog-page' ) !== true ) {
- return;
- }
- // When there is no page configured as blog page.
- if ( 'page' !== $this->show_on_front || ! $this->page_for_posts ) {
- return;
- }
- // When the current page is the home page, searchpage or isn't a singular post.
- if ( is_home() || is_search() || ! is_singular( 'post' ) ) {
- return;
- }
- $this->add_blog_crumb();
- }
- /**
- * Add ptarchive crumb to the crumbs property if it can be linked to, for a single post.
- */
- private function maybe_add_pt_archive_crumb_for_post() {
- // Never do this for the Post type archive for posts, as that would break `maybe_add_blog_crumb`.
- if ( $this->post->post_type === 'post' ) {
- return;
- }
- if ( isset( $this->post->post_type ) && get_post_type_archive_link( $this->post->post_type ) ) {
- $this->add_ptarchive_crumb( $this->post->post_type );
- }
- }
- /**
- * Add taxonomy crumbs to the crumbs property for a single post.
- */
- private function maybe_add_taxonomy_crumbs_for_post() {
- if ( WPSEO_Options::get( 'post_types-' . $this->post->post_type . '-maintax' ) && (string) WPSEO_Options::get( 'post_types-' . $this->post->post_type . '-maintax' ) !== '0' ) {
- $main_tax = WPSEO_Options::get( 'post_types-' . $this->post->post_type . '-maintax' );
- if ( isset( $this->post->ID ) ) {
- $terms = get_the_terms( $this->post, $main_tax );
- if ( is_array( $terms ) && $terms !== [] ) {
- $primary_term = new WPSEO_Primary_Term( $main_tax, $this->post->ID );
- if ( $primary_term->get_primary_term() ) {
- $breadcrumb_term = get_term( $primary_term->get_primary_term(), $main_tax );
- }
- else {
- $breadcrumb_term = $this->find_deepest_term( $terms );
- }
- if ( is_taxonomy_hierarchical( $main_tax ) && $breadcrumb_term->parent !== 0 ) {
- $parent_terms = $this->get_term_parents( $breadcrumb_term );
- foreach ( $parent_terms as $parent_term ) {
- $this->add_term_crumb( $parent_term );
- }
- }
- $this->add_term_crumb( $breadcrumb_term );
- }
- }
- }
- }
- /**
- * Add hierarchical ancestor crumbs to the crumbs property for a single post.
- */
- private function add_post_ancestor_crumbs() {
- $ancestors = $this->get_post_ancestors();
- if ( is_array( $ancestors ) && $ancestors !== [] ) {
- foreach ( $ancestors as $ancestor ) {
- $this->add_single_post_crumb( $ancestor );
- }
- }
- }
- /**
- * Add taxonomy parent crumbs to the crumbs property for a taxonomy.
- */
- private function add_crumbs_for_taxonomy() {
- $term = $GLOBALS['wp_query']->get_queried_object();
- // @todo adjust function name.
- $this->maybe_add_preferred_term_parent_crumb( $term );
- $this->maybe_add_term_parent_crumbs( $term );
- $this->add_term_crumb( $term );
- }
- /**
- * Adds a page crumb to the visible breadcrumbs.
- *
- * @return void
- */
- private function maybe_add_page_crumb() {
- if ( ! is_paged() ) {
- return;
- }
- $current_page = get_query_var( 'paged', 1 );
- if ( $current_page <= 1 ) {
- return;
- }
- $this->crumbs[] = [
- 'text' => sprintf(
- /* translators: %s expands to the current page number */
- __( 'Page %s', 'wordpress-seo' ),
- $current_page
- ),
- 'url' => '',
- 'hide_in_schema' => true,
- ];
- }
- /**
- * Add parent taxonomy crumb based on user defined preference.
- *
- * @param object $term Term data object.
- */
- private function maybe_add_preferred_term_parent_crumb( $term ) {
- if ( WPSEO_Options::get( 'taxonomy-' . $term->taxonomy . '-ptparent' ) && (string) WPSEO_Options::get( 'taxonomy-' . $term->taxonomy . '-ptparent' ) !== '0' ) {
- if ( 'post' === WPSEO_Options::get( 'taxonomy-' . $term->taxonomy . '-ptparent' ) && $this->show_on_front === 'page' ) {
- if ( $this->page_for_posts ) {
- $this->add_blog_crumb();
- }
- return;
- }
- $this->add_ptarchive_crumb( WPSEO_Options::get( 'taxonomy-' . $term->taxonomy . '-ptparent' ) );
- }
- }
- /**
- * Add parent taxonomy crumbs to the crumb property for hierachical taxonomy.
- *
- * @param object $term Term data object.
- */
- private function maybe_add_term_parent_crumbs( $term ) {
- if ( is_taxonomy_hierarchical( $term->taxonomy ) && $term->parent !== 0 ) {
- foreach ( $this->get_term_parents( $term ) as $parent_term ) {
- $this->add_term_crumb( $parent_term );
- }
- }
- }
- /**
- * Add month-year crumb to crumbs property.
- */
- private function add_linked_month_year_crumb() {
- $this->add_predefined_crumb(
- $GLOBALS['wp_locale']->get_month( get_query_var( 'monthnum' ) ) . ' ' . get_query_var( 'year' ),
- get_month_link( get_query_var( 'year' ), get_query_var( 'monthnum' ) )
- );
- }
- /**
- * Add (non-link) month crumb to crumbs property.
- */
- private function add_month_crumb() {
- $this->add_predefined_crumb(
- WPSEO_Options::get( 'breadcrumbs-archiveprefix' ) . ' ' . esc_html( single_month_title( ' ', false ) ),
- null,
- true
- );
- }
- /**
- * Add (non-link) year crumb to crumbs property.
- */
- private function add_year_crumb() {
- $this->add_predefined_crumb(
- WPSEO_Options::get( 'breadcrumbs-archiveprefix' ) . ' ' . esc_html( get_query_var( 'year' ) ),
- null,
- true
- );
- }
- /**
- * Add (non-link) date crumb to crumbs property.
- */
- private function add_date_crumb() {
- $date = get_the_date();
- $this->add_predefined_crumb(
- WPSEO_Options::get( 'breadcrumbs-archiveprefix' ) . ' ' . esc_html( $date ),
- null,
- true
- );
- }
- /**
- * Take the crumbs array and convert each crumb to a single breadcrumb string.
- *
- * @link http://support.google.com/webmasters/bin/answer.py?hl=en&answer=185417 Google documentation on RDFA
- */
- private function prepare_links() {
- if ( ! is_array( $this->crumbs ) || $this->crumbs === [] ) {
- return;
- }
- foreach ( $this->crumbs as $index => $crumb ) {
- $link_info = $crumb; // Keep pre-set url/text combis.
- if ( isset( $crumb['id'] ) ) {
- $link_info = $this->get_link_info_for_id( $crumb['id'] );
- }
- if ( isset( $crumb['term'] ) ) {
- $link_info = $this->get_link_info_for_term( $crumb['term'] );
- }
- if ( isset( $crumb['ptarchive'] ) ) {
- $link_info = $this->get_link_info_for_ptarchive( $crumb['ptarchive'] );
- }
- /**
- * Filter: 'wpseo_breadcrumb_single_link_info' - Allow developers to filter the Yoast SEO Breadcrumb link information.
- *
- * @api array $link_info The breadcrumb link information.
- *
- * @param int $index The index of the breadcrumb in the list.
- * @param array $crumbs The complete list of breadcrumbs.
- */
- $link_info = apply_filters( 'wpseo_breadcrumb_single_link_info', $link_info, $index, $this->crumbs );
- $this->links[ $index ] = $link_info;
- }
- }
- /**
- * Retrieve link url and text based on post id.
- *
- * @param int $id Post ID.
- *
- * @return array Array of link text and url.
- */
- private function get_link_info_for_id( $id ) {
- $link = [];
- $link['url'] = $this->get_link_url_for_id( $id );
- $link['text'] = WPSEO_Meta::get_value( 'bctitle', $id );
- if ( $link['text'] === '' ) {
- $link['text'] = wp_strip_all_tags( get_the_title( $id ), true );
- }
- return $link;
- }
- /**
- * Retrieve link url and text based on term object.
- *
- * @param object $term Term object.
- *
- * @return array Array of link text and url.
- */
- private function get_link_info_for_term( $term ) {
- $link = [];
- $bctitle = WPSEO_Taxonomy_Meta::get_term_meta( $term, $term->taxonomy, 'bctitle' );
- if ( ! is_string( $bctitle ) || $bctitle === '' ) {
- $bctitle = $term->name;
- }
- $link['url'] = get_term_link( $term );
- $link['text'] = $bctitle;
- return $link;
- }
- /**
- * Retrieve link url and text based on post type.
- *
- * @param string $pt Post type.
- *
- * @return array Array of link text and url.
- */
- private function get_link_info_for_ptarchive( $pt ) {
- $link = [];
- $archive_title = $this->get_archive_title( $pt );
- $link['url'] = get_post_type_archive_link( $pt );
- $link['text'] = $archive_title;
- return $link;
- }
- /**
- * Gets the custom set breadcrumb title for the passed post type.
- *
- * @param string $post_type The post type to check.
- *
- * @return string the breadcrumb title.
- */
- private function get_post_type_archive_breadcrumb( $post_type ) {
- return WPSEO_Options::get( 'bctitle-ptarchive-' . $post_type, '' );
- }
- /**
- * Gets the breadcrumb for the passed post type if it's a WooCommerce product and has a breadcrumb title set.
- *
- * @param string $post_type The post type to check.
- *
- * @return string The breadcrumb title.
- */
- private function get_woocommerce_breadcrumb( $post_type ) {
- if ( $post_type !== 'product' || ! WPSEO_Utils::is_woocommerce_active() ) {
- return '';
- }
- $shop_page_id = $this->woocommerce_shop_page->get_shop_page_id();
- if ( $shop_page_id === -1 ) {
- return '';
- }
- return WPSEO_Meta::get_value( 'bctitle', $shop_page_id );
- }
- /**
- * Determines the archive title based on the passed post type.
- *
- * @param string $post_type The post type to determine the title for.
- *
- * @return string The archive title.
- */
- private function get_archive_title( $post_type ) {
- $woocommerce_breadcrumb = $this->get_woocommerce_breadcrumb( $post_type );
- if ( $woocommerce_breadcrumb !== '' ) {
- return $woocommerce_breadcrumb;
- }
- $post_type_archive_breadcrumb = $this->get_post_type_archive_breadcrumb( $post_type );
- if ( $post_type_archive_breadcrumb !== '' ) {
- return $post_type_archive_breadcrumb;
- }
- $post_type_obj = get_post_type_object( $post_type );
- if ( ! is_object( $post_type_obj ) ) {
- return '';
- }
- if ( isset( $post_type_obj->label ) && $post_type_obj->label !== '' ) {
- return $post_type_obj->label;
- }
- if ( isset( $post_type_obj->labels->menu_name ) && $post_type_obj->labels->menu_name !== '' ) {
- return $post_type_obj->labels->menu_name;
- }
- return $post_type_obj->name;
- }
- /**
- * Create a breadcrumb element string.
- *
- * @todo The `$paged` variable only works for archives, not for paged articles, so this does not work
- * for paged article at this moment.
- *
- * @param array $link Link info array containing the keys:
- * 'text' => (string) link text.
- * 'url' => (string) link url.
- * (optional) 'title' => (string) link title attribute text.
- * (optional) 'allow_html' => (bool) whether to (not) escape html in the link text.
- * This prevents html stripping from the text strings set in the
- * WPSEO -> Internal Links options page.
- * @param int $i Index for the current breadcrumb.
- *
- * @return string
- */
- private function crumb_to_link( $link, $i ) {
- $link_output = '';
- if ( isset( $link['text'] ) && ( is_string( $link['text'] ) && $link['text'] !== '' ) ) {
- $link['text'] = trim( $link['text'] );
- if ( ! isset( $link['allow_html'] ) || $link['allow_html'] !== true ) {
- $link['text'] = esc_html( $link['text'] );
- }
- if ( ( $i < ( $this->crumb_count - 1 ) && ( isset( $link['url'] ) && ( is_string( $link['url'] ) && $link['url'] !== '' ) ) )
- ) {
- $link_output .= '<' . $this->element . '>';
- $title_attr = isset( $link['title'] ) ? ' title="' . esc_attr( $link['title'] ) . '"' : '';
- $link_output .= '<a href="' . esc_url( $link['url'] ) . '" ' . $title_attr . '>' . $link['text'] . '</a>';
- }
- else {
- $inner_elm = 'span';
- if ( $i === ( $this->crumb_count - 1 ) && WPSEO_Options::get( 'breadcrumbs-boldlast' ) === true ) {
- $inner_elm = 'strong';
- }
- $link_output .= '<' . $inner_elm . ' class="breadcrumb_last" aria-current="page">' . $link['text'] . '</' . $inner_elm . '>';
- // This is the last element, now close all previous elements.
- while ( $i > 0 ) {
- $link_output .= '</' . $this->element . '>';
- $i--;
- }
- }
- }
- /**
- * Filter: 'wpseo_breadcrumb_single_link' - Allow changing of each link being put out by the Yoast SEO breadcrumbs class.
- *
- * @api string $link_output The output string.
- *
- * @param array $link The link array.
- */
- return apply_filters( 'wpseo_breadcrumb_single_link', $link_output, $link );
- }
- /**
- * Create a complete breadcrumb string from an array of breadcrumb element strings.
- */
- private function links_to_string() {
- if ( is_array( $this->links ) && $this->links !== [] ) {
- // Converts info to an effective link.
- $links = $this->links;
- foreach ( $links as $key => $link ) {
- $links[ $key ] = $this->crumb_to_link( $link, $key );
- }
- // Removes any effectively empty links.
- $links = array_map( 'trim', $links );
- $links = array_filter( $links );
- $this->output = implode( $this->separator, $links );
- }
- }
- /**
- * Wrap a complete breadcrumb string in a wrapper.
- */
- private function wrap_breadcrumb() {
- if ( is_string( $this->output ) && $this->output !== '' ) {
- $output = '<' . $this->wrapper . $this->get_output_id() . $this->get_output_class() . '>' . $this->output . '</' . $this->wrapper . '>';
- /**
- * Filter: 'wpseo_breadcrumb_output' - Allow changing the HTML output of the Yoast SEO breadcrumbs class.
- *
- * @api string $unsigned HTML output.
- */
- $output = apply_filters( 'wpseo_breadcrumb_output', $output );
- if ( WPSEO_Options::get( 'breadcrumbs-prefix' ) !== '' ) {
- $output = "\t" . WPSEO_Options::get( 'breadcrumbs-prefix' ) . "\n" . $output;
- }
- $this->output = $output;
- }
- }
- /**
- * Retrieves HTML ID attribute.
- *
- * @return string
- */
- private function get_output_id() {
- /**
- * Filter: 'wpseo_breadcrumb_output_id' - Allow changing the HTML ID on the Yoast SEO breadcrumbs wrapper element.
- *
- * @api string $unsigned ID to add to the wrapper element.
- */
- $id = apply_filters( 'wpseo_breadcrumb_output_id', '' );
- if ( is_string( $id ) && '' !== $id ) {
- $id = ' id="' . esc_attr( $id ) . '"';
- }
- return $id;
- }
- /**
- * Retrieves HTML Class attribute.
- *
- * @return string
- */
- private function get_output_class() {
- /**
- * Filter: 'wpseo_breadcrumb_output_class' - Allow changing the HTML class on the Yoast SEO breadcrumbs wrapper element.
- *
- * @api string $unsigned Class to add to the wrapper element.
- */
- $class = apply_filters( 'wpseo_breadcrumb_output_class', '' );
- if ( is_string( $class ) && '' !== $class ) {
- $class = ' class="' . esc_attr( $class ) . '"';
- }
- return $class;
- }
- }
|