• Hello, can someone show me how to show specific category post excerpts on a page? I would also like to be able to adjust the word length. I think I start off with making a page template.

    Thank you,
    Chad

Viewing 2 replies - 1 through 2 (of 2 total)
  • You may use this filter to adjust the excerpt length:
    function custom_excerpt_length( $length ) {
    return 20;
    }
    add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );

    Thread Starter cboysworld

    (@cboysworld)

    Thank you for the response, but I need the first part of the code that will put specific category post excerpts in a page.

    Chad

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Page template with post excerpts’ is closed to new replies.