BuddyBoss Home – Web Support Forums Themes OneSocial theme Recommended Posts Page

Viewing 5 posts - 1 through 5 (of 5 total)
  • Question

    #62847
    @orryspoon

    Hi,

    I am looking at creating a separate page that displays the most recommended posts over a certain time frame. Does anyone know how to do this?

    Thanks
    David

    Answers

    #63069
    @orryspoon

    Any advice on this?

    #63243

    Alyssa
    Participant
    @alyssa-buddyboss

    Hi David, 

    We apologize for the delayed response, we are aware of the poor support performance over the last few weeks and are working hard on getting this back to normal. Meanwhile, I’m here to help, while we work on solving this. 

    Try with following query. This will return most recommended posts.

    $query_args = array(
    'post_type' => 'post',
    'post_status' => 'publish',
    'meta_key' => '_post_like_count',
    'orderby' => 'meta_value_num',
    'order' => 'DESC',
    );
    $posts = new WP_Query( $query_args );

    Thanks again for your patience.

    #63633
    @orryspoon

    Hi,

    I am not technical so where do I put this code?

    David

    #64085

    Alyssa
    Participant
    @alyssa-buddyboss

    Hello David,

    We provide advanced support for helping with customizations once all other support forum customers have been taken care of. Please allow several days so I may schedule time to help here. It requires creating a new template and adding custom code there, something beyond standard support as this is actually a customization.

    Thanks again for your patience.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The question ‘Recommended Posts Page’ is closed to new replies.