• I am using WordPress 2.3.2 and I have no idea where to add the code: < ?php wp23_related_posts(); ? >

    Does that go in my templates.php file? If so, where do I add it? If not, what is the correct file to add it to and where in that file? Thank for your help.

Viewing 8 replies - 1 through 8 (of 8 total)
  • depending on what you want, in my case, i add it on the bottom of <?php the_content; ?>

    leonardorb

    (@leonardorb)

    spunkycloud,

    you can put this in the single page (if you want to show the related with the content of one post per time), after the post tag ‘the content(…)’.

    ??

    dupola

    (@dupola)

    Add to your single page(if you want to show it on there) like this:
    <?php if ((function_exists(‘wp23_related_posts’)) and is_single()) { ?>
    <div class=”related_posts”>
    <?php wp23_related_posts(); ?>
    <?php } ?></div><!–end related post–>
    </div>

    mokkori

    (@mokkori)

    I got this error
    Fatal error: Call to undefined function wp32_related_posts() in /home/mokkori/public_html/blog/wp-content/themes/damai/single.php on line 27

    why is this?

    wolfgrrl

    (@wolfgrrl)

    I’ve got this working in my posts, but it does not show up in my feeds. I run through FeedBurner – does it work with FeedBurner? Thanks

    I can’t get it to work in my posts. I don’t have php content in my single.php file. I just have div=”content”

    Where exactly do I put the code?

    I can get this to appear, but it makes my right column fall under the content. Is this a really wide form or something?

    yeah this thing doesn’t work

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Where Do I Add < ?php wp23_related_posts(); ? >’ is closed to new replies.