Thank you for the amazing layout. I have a custom post type that I am working with and I am wondering it there is an easy way to have it display some of my custom fields. As an example, I have a “star rating” in my custom post type and I would like to output it to the right of the title. Is this possible?
I found this code myself in the forums:
add_action( ‘wpsp_before_content’,’wpsp_add_custom_meta’ );
function wpsp_add_custom_meta()
{
$meta = get_post_meta( get_the_ID(), ‘_your_custom_meta_key’, true );
if ( isset( $meta ) && ” !== $meta )
echo $meta;
}
and have updated it in the functions.php of wpshowposts folder. Is this correct? The values do not appear to be showing in my post list. I have also updated the meta key to my custom value.