Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author David Aguilera

    (@davilera)

    Hi!

    Yes, sure. You can define your own templates for rendering a featured post. Just define a template in which the featured image takes the whole width and is presented as a rectangle, not a cropped square.

    The plugin includes a couple of examples. The one named title-and-featured-image.php is almost what you need. In particular, there’s the following block:

    <div class="featured-image alignleft">
      <?php
      echo $open_link;
      echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
      echo $close_link;
      ?>
    </div>

    just change it so that it’s no longer aligned to the left and use the full size image (or any other dimension you might be interested in, such as medium or array( 400, 150 ) ):

    <div class="featured-image">
      <?php
      echo $open_link;
      echo get_the_post_thumbnail( $post->ID, 'full' );
      echo $close_link;
      ?>
    </div>

    Remember you can further tweak the look and feel of the featured post using CSS rules.

    Thread Starter Lock-N-Load

    (@lock-n-load)

    well.. thanks for the response. But that was 5 months ago man.. I moved on to a different plugin LOOONG ago.

    Plugin Author David Aguilera

    (@davilera)

    No problem, buddy. I’m sorry I didn’t reply sooner – I missed your question when you post it!

    Anyway, I thought it be interesting to answer to it, so that if anyone faces the same problem, he can fix it.

    Have a wonderful weekend!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘set thumbnail size’ is closed to new replies.