pradeepkumar10

Untitled

Sep 16th, 2023
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. add_filter('rank_math/snippet/rich_snippet_article_entity', function ($entity) {
  2. $score = get_post_meta(get_the_ID(), 'users_name', true); // Replace with your rating post meta.
  3. $count = get_post_meta(get_the_ID(), 'users_job', true); // Replace with your rating count post meta.
  4. $entity['reviewedBy'] = array(
  5. '@type' => 'Person',
  6. 'name' => $score,
  7. 'jobTitle' => $count,
  8. );
  9. return $entity;
  10. });
  11.  
  12.  
  13.  
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment