• I just installed wp-post-formats-develop.In this post format how can i call[front end code]video embedd content to my page?.

    <textarea name="_format_video_embed" id="cfpf-format-video-embed" tabindex="1"><?php echo esc_textarea(get_post_meta($post->ID, '_format_video_embed', true)); ?></textarea>

    if i tried like this

    <?php echo esc_attr(get_post_meta($post->ID, '_format_video_embed', true)); ?>

    rendering the url not the embed video.And gallery format rendering images same as post_thumbnail,not a perfect next prev gallery. what else i have to do in my theme?

Viewing 1 replies (of 1 total)
  • <?php echo get_post_meta($post->ID,'_format_video_embed',TRUE); ?> is what I use and it works for me.

Viewing 1 replies (of 1 total)
  • The topic ‘Post format plugin wp-post-formats-develop issue’ is closed to new replies.