• How can I remove “read the rest of this entry” from my posts? I want to show the full posts. Please give me a step by step as I’m a newbie and not a techie.

    Below is what showing in function.php. THANKS!

    }
    function art_get_post_content() {
    global $post;
    ob_start();
    if(is_single() || is_page()) {
    echo art_get_the_content(__(‘Read the rest of this entry »’, THEME_NS));
    wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’));
    } else {
    echo art_get_the_excerpt(__(‘Read the rest of this entry »’, THEME_NS),
    get_permalink($post->ID),
    art_option(‘metadata.excerpt_words’),
    art_option(‘metadata.excerpt_use_tag_filter’) ? explode(‘,’,art_option(‘metadata.excerpt_allowed_tags’)) : null,
    art_option(‘metadata.excerpt_min_remainder’),
    art_option(‘metadata.excerpt_auto’));
    }
    return ob_get_clean();
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • If you are using the twenty-ten theme then you can set “For each article in a feed, show” located in the Settings >> Reading panel to “Full Text”.

    Michael

    modify this line echo art_get_the_excerpt(__('Read the rest of this entry ?', THEME_NS), with this echo art_get_the_content(__('Read the rest of this entry ?', THEME_NS),

    Thread Starter annettie

    (@annettie)

    Rose, I’m using an Artisteer template.

    Chinmoy, you are a genius!!! I tried other solutions but didn’t work for me.

    Thank you so much!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove "read the rest of this entry" in post’ is closed to new replies.