• Resolved masterpuffin

    (@masterpuffin)


    Hi,
    I want to show a shordcode on top of every post. Now I have the code below, which is working, but it shows the shortcode on the bottom of every post. So now my question is: How do I get it on top?
    Best regards
    Puffin

    add_filter('the_content','add_signature');
    function add_signature($text) {
    global $post;
    if($post->post_type == 'post') $text .= '<div class="signature">
    [JuraID]
    </div>';
    return $text;
Viewing 1 replies (of 1 total)
  • Thread Starter masterpuffin

    (@masterpuffin)

    I figured it out now; this one works as it should:

    add_filter('the_content','add_signature');
    function add_signature($text) {
    global $post;
    if($post->post_type == 'post') $text = '<div class="signature">
    [JuraID]
    </div>' . $text; 
    return $text;
Viewing 1 replies (of 1 total)
  • The topic ‘Signature on top of every post’ is closed to new replies.