• Resolved khahina

    (@khahina)


    Hello,
    I work on new recipes site, and want integrate rich snippet with rank math.

    First the rich snippet for recipe integrate aggregateRating who are not in Rank Math schema.

    I can recolt rating with wp-PostRatings plugins, and i know how worked with the data from it
    but how i can add all the agregating schema in the rankmath recipe json-ld.

    “aggregateRating”: { “@type”: “AggregateRating”,
    “ratingValue”: $ratingsmoy,
    “bestRating”: $ratingsscor;,
    “ratingCount”: $ratingsnb;
    }

    Thank you

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Rank Math

    (@rankmath)

    Hello @khahina

    Thank you for contacting the support.

    You can use the following filter to modify the output of the Schema Markup:

    add_filter( "rank_math/snippet/rich_snippet_recipe_entity", function( $entity ) {
     return $entity;
    });

    Hope that helps. Please let us know if you need any further assistance, we are here to help.

    Thread Starter khahina

    (@khahina)

    Thank you,
    But this solution replace all the recipe snippet,
    I will wanted just add the agregating parts
    Did it possible ?

    Plugin Author Rank Math

    (@rankmath)

    Hello @khahina

    Please use the following code:

    add_filter( "rank_math/snippet/rich_snippet_recipe_entity", function( $entity ) {
    	$entity['aggregateRating'] = [
    		"@type" => "AggregateRating",
    		"ratingValue" => "value",
    		"reviewCount" => "value",
    	];
    	return $entity;
    });

    Here is the code format. You can use get_post_meta or whatever function the wp-PostRatings provides to get the value of the ratings.

    Hope that helps. Thank you.

    Thread Starter khahina

    (@khahina)

    Hello,
    lol yes i just found the right syntax, and only see now you post it (the same, nice we are agree)…

    Thank you

    Plugin Author Rank Math

    (@rankmath)

    Hello @khahina

    We are super happy that this resolved your issue. If you have any other questions in the future, know that we are here to help you.

    If you don’t mind me asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post about your overall experience with Rank Math? We appreciate your time and patience.

    If you do have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

    mrvigner

    (@mrvigner)

    Thanks @rankmath ! The solution you proposed helped me too. 🙂

    Plugin Author Rank Math

    (@rankmath)

    Hello @mrvigner

    Glad that helped.

    If it isn’t too much to ask for – would you mind leaving us a review here?
    https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post

    It only takes a couple of minutes but helps us tremendously.

    It would mean so much to us and would go a really long way.

    Thank you.​​

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Recipe rich snippet’ is closed to new replies.