• 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.

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Need content to show after "the_post"’ is closed to new replies.