Get PHP Yoast Meta description
-
Hi there, we are trying to return the Yoast SEO metadescription for GenerateBlocks. However, we are not seeing any code to get the Yoast meta description online aside from that code beneath which isn’t working.
add_filter('generateblocks_dynamic_content_output', function($content, $attributes, $block){ if ( ! is_admin() && ! empty( $attributes['className'] ) && strpos( $attributes['className'], 'get-yoast-desc' ) !== false ) { $yoast_meta = YoastSEO()->meta->for_current_page()->description; var_dump($yoast_meta); if($yoast_meta){ return $yoast_meta; } } return $content; }, 10, 3);
Could you check if there is a possibility to retrieve the Yoast meta description for the Search page in PHP?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Get PHP Yoast Meta description’ is closed to new replies.