Add this to your single.php right before line <?php the_content(); ?>. 🙂
<?php
if ( has_post_thumbnail()) {
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
echo '<a href="' . $large_image_url[0] . '" title="' . the_title_attribute('echo=0') . '" rel="lightbox" >';
the_post_thumbnail( 'medium', array( 'class' => 'alignleft' ) );
echo '</a>';
}
?>
Hi zeshankhanbwp. To display the post featured image, select “Image” for the post format. The theme includes the code to display the image when the post is using that format.
Hi: adamcharvat & bdbrown thanks above code works perfectly
Thanks
zeeshan
Hi: I want to increase the width of the single post featured image to 800px or may the featured image fit to the main contents area.
Thanks
zeeshan
can you post a link to your site? Thanks.
@bdbrown I’m using a custom post type and I can’t see the Post Formats from inside of it.
However I know that I have to go inside the file init-meta-boxes.php and set for example:
‘pages’ => array( ‘post’ ),
to
‘pages’ => array( ‘post’,’movies’ ),
So it will enable that post format inside my custom post type.
But inside the file init-meta-boxes.php is missing the code for image and other post formats. I only see these ones:
$post_format_audio = array( …
$post_format_gallery = array( …
$post_format_chat = array( …
$post_format_link = array( …
$post_format_quote = array( …
$post_format_video = array( …
May you provide the full code?
Sorry, I think this is the right question:
Where do I enable that right side box to appear in my CPT allowing me to choose between the post formats?