• Resolved sunlight1976

    (@sunlight1976)


    Hi,
    I created a child theme with some custom post templates

    In a custom post template I want to show some text* between featured image and article body.

    *I generate this text in php

    I tried to add a filter with no success…

    thanks

Viewing 1 replies (of 1 total)
  • Thread Starter sunlight1976

    (@sunlight1976)

    Solved with:

    add_filter( 'the_content', 'tutsplus_the_content' );
    function tutsplus_the_content( $content ) {

    […]

    $content = $html .= $content;
     
        return $content;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Custom post template: add some text after title’ is closed to new replies.