• ev0l86

    (@ev0l86)


    Hello gentlemans,
    First i am sorry for my bad english, i am trying to be explicit.
    Second of all, i love this template, is very beautifull, good job guys.

    I am trying to make my homepage (index page) to be with articles full.
    I don`t want to be feature images, like blogspot simple theme, without “read more”; or maybe where is big article, but i think this will be fixed with “Excerpt Length”

    Youtube videos to be like in post, to be same in home page.

    Thanks in advance, and sorry again for bad english

Viewing 1 replies (of 1 total)
  • bdbrown

    (@bdbrown)

    Hi ev0l86. Give this a try and see if it’s what you’re after:
    1. Make sure the posts don’t have a Featured Image assigned.
    2. In Theme Options > Blog, set Standard Blog List to ON and Thumbnail Placeholder to OFF.
    3. The theme Excerpt Length maximum is 100 words. If you want to show the entire post content try adding this to your child theme functions.php file:

    /* if no manual excerpt, return the content without default trims */
    function my_wp_trim_excerpt( $text ) {
      if ( '' == $text ) {
        $text = get_the_content('');
      }
      return $text;
    }
    remove_filter( 'get_the_excerpt', 'wp_trim_excerpt', 10 );
    add_filter( 'get_the_excerpt', 'my_wp_trim_excerpt', 99, 1 );
Viewing 1 replies (of 1 total)
  • The topic ‘Home page, full page, full post, no feature’ is closed to new replies.