Before you ask please READ THIS

Full blog posts

edited February 2014 in Spaceship Posts: 6
Hi!
Is it possible to make blog posts just show up without cutting off after 30 words or making it manual? I'd like to just have them show up completely. I am 99% of the time going to have images and I want them to catch people's eyes rather than have just text. To clarify, I am ok with it on the drop down (when you click the arrow at the top of the page and it's truncated) but I'd like it to show on the "blog page". I really hope this makes sense. I am so ignorant of web-design lingo and practice.
Thank you so much.
Joyce

Comments

  • AirAir
    edited February 2014 Posts: 10,970
    Hello

    So you want to show full posts on blog.

    I see from code that you can do it manually with use of more tag http://en.support.wordpress.com/splitting-content/more-tag/
    Check also info in documentation http://apollo13.eu/docs/spaceship/#!/main_settings_menu_blog

    If you want to do it from code then, go to loop.php and change this
    
    <?php
                        if($apollo13->get_option('settings', 'excerpt_type') == 'auto'){
                            if(strpos($post->post_content, '<!--more-->')){
                                the_content(__fe('Read more&hellip;' ));
                            }
                            else{
                                the_excerpt();
                            }
                        }
                        //manual post cutting
                        else{
                            the_content(__fe('Read more&hellip;' ));
                        }
                    ?>
    
    to:
    <?php the_content(); ?>

    With regards.
    Post edited by Air on
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion