• Hello, i have this code:

    <?php
    
    $related = get_posts( array( 'category__in' => wp_get_post_categories($post->ID), 'numberposts' => 5, 'post__not_in' => array($post->ID) ) );
    if( $related ) foreach( $related as $post ) {
    setup_postdata($post); ?>
     <ul>
            <li>
            <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
    
            </li>
        </ul>
    <?php }
    wp_reset_postdata(); ?>

    It loops all similar posts by tag/tags, i need to loop similar posts by title. Anybody knows the solution?

  • The topic ‘How to loop similar posts by title?’ is closed to new replies.