: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
namespace Yoast\WP\SEO\Presentations;
use Yoast\WP\SEO\Helpers\Taxonomy_Helper;
use Yoast\WP\SEO\Wrappers\WP_Query_Wrapper;
* Class Indexable_Term_Archive_Presentation.
* Presentation object for indexables.
* @property WP_Term $source
class Indexable_Term_Archive_Presentation extends Indexable_Presentation {
* Holds the WP query wrapper instance.
private $wp_query_wrapper;
* Holds the taxonomy helper instance.
* Indexable_Post_Type_Presentation constructor.
* @param WP_Query_Wrapper $wp_query_wrapper The wp query wrapper.
* @param Taxonomy_Helper $taxonomy The Taxonomy helper.
public function __construct(
WP_Query_Wrapper $wp_query_wrapper,
Taxonomy_Helper $taxonomy
$this->wp_query_wrapper = $wp_query_wrapper;
$this->taxonomy = $taxonomy;
* Generates the canonical.
* @return string The canonical.
public function generate_canonical() {
if ( $this->is_multiple_terms_query() ) {
if ( $this->model->canonical ) {
return $this->model->canonical;
if ( ! $this->permalink ) {
$current_page = $this->pagination->get_current_archive_page_number();
if ( $current_page > 1 ) {
return $this->pagination->get_paginated_url( $this->permalink, $current_page );
* Generates the meta description.
* @return string The meta description.
public function generate_meta_description() {
if ( $this->model->description ) {
return $this->model->description;
return $this->options->get( 'metadesc-tax-' . $this->model->object_sub_type );
* @return array The source.
public function generate_source() {
if ( ! empty( $this->model->object_id ) || \is_null( \get_queried_object() ) ) {
return \get_term( $this->model->object_id, $this->model->object_sub_type );
return \get_term( \get_queried_object()->term_id, \get_queried_object()->taxonomy );
* Generates the Open Graph description.
* @return string The Open Graph description.
public function generate_open_graph_description() {
$open_graph_description = parent::generate_open_graph_description();
if ( $open_graph_description ) {
return $open_graph_description;
return $this->taxonomy->get_term_description( $this->model->object_id );
* Generates the Twitter description.
* @return string The Twitter description.
public function generate_twitter_description() {
$twitter_description = parent::generate_twitter_description();
if ( $twitter_description ) {
return $twitter_description;
if ( $this->open_graph_description && $this->context->open_graph_enabled === true ) {
return $this->taxonomy->get_term_description( $this->model->object_id );
* Generates the robots value.
* @return array The robots value.
public function generate_robots() {
$robots = $this->get_base_robots();
* If its a multiple terms archive page return a noindex.
if ( $this->current_page->is_multiple_terms_page() ) {
$robots['index'] = 'noindex';
return $this->filter_robots( $robots );
* First we get the no index option for this taxonomy, because it can be overwritten the indexable value for
if ( \is_wp_error( $this->source ) || ! $this->taxonomy->is_indexable( $this->source->taxonomy ) ) {
$robots['index'] = 'noindex';
* Overwrite the index directive when there is a term specific directive set.
if ( $this->model->is_robots_noindex !== null ) {
$robots['index'] = ( $this->model->is_robots_noindex ) ? 'noindex' : 'index';
return $this->filter_robots( $robots );
* @return string The title.
public function generate_title() {
if ( $this->model->title ) {
return $this->model->title;
if ( \is_wp_error( $this->source ) ) {
return $this->model->title;
// Get the SEO title as entered in Search Appearance.
$title = $this->options->get( 'title-tax-' . $this->source->taxonomy );
// Get the installation default title.
$title = $this->options->get_title_default( 'title-tax-' . $this->source->taxonomy );
* Generates the Open Graph type.
* @return string The Open Graph type.
public function generate_open_graph_type() {
* Checks if term archive query is for multiple terms (/term-1,term-2/ or /term-1+term-2/).
* @return bool Whether the query contains multiple terms.
protected function is_multiple_terms_query() {
$query = $this->wp_query_wrapper->get_query();
if ( ! isset( $query->tax_query ) ) {
if ( \is_wp_error( $this->source ) ) {
$queried_terms = $query->tax_query->queried_terms;
if ( empty( $queried_terms[ $this->source->taxonomy ]['terms'] ) ) {
return \count( $queried_terms[ $this->source->taxonomy ]['terms'] ) > 1;