Description – Archive – CPT
-
Hey,
Description Meta Tag is not shown on our archive product pages. So we have done some snippet codework. But it is still not shown. We have done this with meta title, and it worked, but description ist even not shown on the sourcecode:
add_filter( 'the_seo_framework_generated_description', 't11_review_seo_meta_desc', 10,2); function t11_review_seo_meta_desc( $title, $args ){ if ( $args === null && get_post_type( get_the_ID() ) == 'product_reviews' ){ $product = get_field('name', get_the_ID()); $description = 'Jetzt alles über' .$product.' erfahren und mit echten Nutzererfahrungen vergleichen. Prüfe jetzt, ob das Tool zu dir passt auf Hallo Reviews'; } } return $title;
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘Description – Archive – CPT’ is closed to new replies.