• Hi,

    I would like to stick posts to pages other than the home page. Is there any plugin or way to do this?

    Thanks ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • You’ll need to use a get_post loop in a page template to do that. Here a post with a custom field of sticky with a value of stickypage1 is used:

    <?php
    $sticky=get_posts('meta_key=sticky&meta_value=stickypage1');
    if ($sticky) {
      foreach($sticky as $post) {
        setup_postdata($post); ?>
        <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
        <?php the_content('<p class="serif">Read the rest of this page ?</p>');
      }
    }
    ?>

    The above would go in a page template.

    MichaelH Thanks

    [signature moderated Please read the Forum Rules]

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sticking posts to pages other than home page’ is closed to new replies.