Forums

Need content to show after "the_post" (3 posts)

  1. areimann
    Member
    Posted 10 months ago #

    I am working on a plugin that will need to have some "stuff" show up on a page. I am using the "the_post" hook and my "stuff" is showing up before the page's title. Here is my code:

    function stuff_to_show_after_post($post)
    {
    //stuff here
    }
    add_action('the_post', "stuff_to_show_after_post");

    How can I have my stuff show up after "the_post"?

    I'm sorry if this is a simple question, I just can't find the hook to use.

    thanks in advance for any direction you can give me.

  2. Micah
    Member
    Posted 9 months ago #

    I like to use 'the_content' filter when appending content to a post: http://codex.wordpress.org/Plugin_API/Filter_Reference/the_content

    function append_to_post( $content ){
        $content = $content . ' Extra Stuff Here';
        return $content;
    }
    add_filter('the_content', 'append_to_post');
  3. areimann
    Member
    Posted 2 months ago #

    Don't know if thanked for this. THANKS

Reply

You must log in to post.

About this Topic

Tags

No tags yet.