I have checked off summary in the For each article in a feed, show box in the Readings Settings. However the full text is showing for my post on my home page. Is there something else I need to do just to get a summary of the post?
Thank you
I have checked off summary in the For each article in a feed, show box in the Readings Settings. However the full text is showing for my post on my home page. Is there something else I need to do just to get a summary of the post?
Thank you
The Full/Summary option controls your RSS feeds - not your posts' display. You will need to edit your theme's template files and change <?php the_content();?> to <?php the_excerpt();?> where appropriate.
I found the code below in the Main Template Index
<!-- article-content -->
<?php if (is_search()) the_excerpt(); else the_content(__('Read the rest of this entry »', 'kubrick')); ?>
I am not sure how to identify the Theme's template files?
Thanks.
Try changing that line to:
<?php the_excerpt();?>
Hey thanks that worked. Now about those those details at the bottom of the post, such as posted in attraction marketing, tags, etc. Can I hide them?
You know what? There is no where to click to continue reading the post?
How can I manage that?
http://codex.wordpress.org/Function_Reference/the_excerpt
http://codex.wordpress.org/Function_Reference/the_excerpt#Make_the_.22read_more.22_link_to_the_post
btw: you are using a theme by artisteer, not Kubrick
I inherited this WordPress site, and I am trying to determine the theme used.
This is in my theme functions.php;
<?php
load_theme_textdomain('kubrick');
This is the theme installed: Stephen3 1.0 by Anonymous
Needless to say I am on an adventure.
It's definitely not the Kubrick theme. As achymyth said, it's an Artisteer theme. Looks like it simply re-uses the kubrick text domain name for translation purposes.
This topic has been closed to new replies.