Forum Replies Created
-
Thanks Syahir, I was a little bit confused with that, thats ok now, working fine.
Yes… and it also caused some pain to my page… strange things happening. Like for example the text previous to the Read More link just disapears when jumping to the whole article.
I’ll step back, but then, what do you suggest? I remind you the Read More link didn’t appear after the Excerpt..
Sorry to reopen the issue.
Solved, I Removed some code and pasted like this:
<?php /* Post content */ ?>
<div class=”entry-content clearfix”>
<?php do_action(‘graphene_before_post_content’); ?>
<?php the_content(‘Sigue leyendo »’, TRUE,”); ?>
<?php wp_link_pages(array(‘before’ => __(‘<p>Pages: ‘,’graphene’), ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
<?php do_action(‘graphene_after_post_content’); ?>
</div>
Any ‘side effects’? I didn’t think about?
Thanks anyway!
Hello Syahir, thanks for your response. Youre very kind.
The thing is that I find it is not very clear for the user that he needs to clic on the title to go further, and the excerpt stops suddenly, creating a strange effect of ‘uncomplete’ post. So, if I have to choose between publishing the complete post or showing an excerpt without a Read More link, basically I’d like to arrange an automatic ‘Continue Reading’ link to all posts -well, the more I could control that, the best-.
You talk about ‘automatic excerpts’, where is this defined? Is there any line of code I can add to the Loop.php so I can get this Read More activated?
I copy here the piece of code I think needs to be modified. If you could just inspire me 🙂
Thanks dude
<?php /* Post content */ ?>
<div class=”entry-content clearfix”>
<?php do_action(‘graphene_before_post_content’); ?>
<?php if (!is_search() && !is_archive() && (!get_option(‘graphene_posts_show_excerpt’) || is_single() || is_page())) : ?>
<?php the_content(__(‘Read the rest of this entry »’,’graphene’)); ?>
<?php else : ?>
<?php the_excerpt(); ?>
<?php endif; ?>
<?php wp_link_pages(array(‘before’ => __(‘<p>Pages: ‘,’graphene’), ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
<?php do_action(‘graphene_after_post_content’); ?>
</div>
Viewing 4 posts - 1 through 4 (of 4 total)
