Skip to content

Instantly share code, notes, and snippets.

@mwhiteley16
Created December 9, 2022 14:05
Show Gist options
  • Save mwhiteley16/77bd70ea4d5a37699e7788073fd9dd38 to your computer and use it in GitHub Desktop.
Save mwhiteley16/77bd70ea4d5a37699e7788073fd9dd38 to your computer and use it in GitHub Desktop.
Get Create Ratings
<?php
if ( function_exists( 'mv_get_post_creations' ) ) {
$recipes = mv_get_post_creations( get_the_ID() );
if ( ! empty( $recipes ) ) {
$recipe = $recipes[0];
$recipe_meta = mv_create_get_creation( $recipe );
$recipe_rating = 'Create Recipe Rating - ' . $recipe_meta->rating;
// print_r( $recipe_meta ); // show other available data
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment