Not Showing featured

January 2013 WordPress Theme
GK User
Sat Feb 23, 2013 10:07 pm
Hello there,
I dont want to show the featured images on top of single posts. Is there a way I can have the images appear on homepage and elsewhere without having to make it featured?? Or even if I have to make it featured,NOT displaying it on top of the single post??

Also how can I add some ad codes in that location (which displays the feauted images)?
User avatar
Junior Boarder

GK User
Sun Feb 24, 2013 7:38 am
Hi,

In both cases you have to edit file: layouts/content.post.featured.php

if you want to don't display the featured images on the single post pages you have to just edit the file's code to this form:

Code: Select all
<?php

/**
 *
 * The template fragment to show post featured image
 *
 **/

// disable direct access to the file   
defined('GAVERN_WP') or die('Access denied');

global $tpl;

?>

<?php if(!is_single() && has_post_thumbnail()) : ?>
<figure class="featured-image">
   <?php the_post_thumbnail(); ?>
</figure>
<?php endif; ?>
User avatar
Administrator

GK User
Mon Feb 25, 2013 2:20 am
Thank you. That works.
Where do I add the google analytics code in the theme?
User avatar
Junior Boarder

GK User
Mon Feb 25, 2013 8:14 am
You should add the Google Analytics code in the layouts/footer.php file before closing body tag.
User avatar
Administrator

GK User
Fri Mar 08, 2013 1:19 am
dziudek wrote:Hi,

In both cases you have to edit file: layouts/content.post.featured.php

if you want to don't display the featured images on the single post pages you have to just edit the file's code to this form:

Code: Select all
<?php

/**
 *
 * The template fragment to show post featured image
 *
 **/

// disable direct access to the file   
defined('GAVERN_WP') or die('Access denied');

global $tpl;

?>

<?php if(!is_single() && has_post_thumbnail()) : ?>
<figure class="featured-image">
   <?php the_post_thumbnail(); ?>
</figure>
<?php endif; ?>


What about having images appear w/o making them featured?
User avatar
Senior Boarder

GK User
Fri Mar 08, 2013 8:24 am
Only the featured images can be displayed on these pages.
User avatar
Administrator


cron