article:tag
-
Hi,
what exactly I have to do to make Yoast to show article:tag tags?
I’ve checked the code:
public function tags() { if ( ! is_singular() ) { return false; } $tags = get_the_tags(); if ( ! is_wp_error( $tags ) && ( is_array( $tags ) && $tags !== array() ) ) { foreach ( $tags as $tag ) { $this->og_tag( 'article:tag', $tag->name ); } return true; } return false; }
and I noticed it is taking tags from the post and not from any other settings, but my post is tagged and I can’t see any article:tag for my articles…
What am I doing wrong?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘article:tag’ is closed to new replies.