简体   繁体   English

Wordpress-如何从我关注的用户那里获得帖子

[英]Wordpress - How can i get the posts from the users i follow

I have this function to retrieves all the users that the specified user follows. 我具有此功能来检索指定用户遵循的所有用户。 This code from plugin " Users Following System ", and all i need to get the posts from the users i follow! 这段代码来自插件“ Users Following System ”,我需要从我关注的用户那里获得帖子!

<?php
/**
 * Retrieves all users that the specified user follows
 *
 * Gets all users that $user_id followers
 *
 * @access      private
 * @since       1.0
 * @param   int $user_id - the ID of the user to retrieve following for
 * @return      array
 */

function pwuf_get_following( $user_id = 0 ) {

    if ( empty( $user_id ) ) {
        $user_id = get_current_user_id();
    }

    $following = get_user_meta( $user_id, '_pwuf_following', true );

    if ( empty( $following ) ) {

    return;

    }
    return (array) apply_filters( 'pwuf_get_following', $following, $user_id );
}
?>

Now i'm trying to bring out all posts of the users i follow.but this bring out the users i follow and more other posts of users i never following them also the pagination not working as well. 现在我正尝试显示我关注的所有用户帖子。但这会显示我关注的用户以及其他我从未关注过的用户帖子,而且分页效果也不佳。

<?php
/**
 * Shows the posts from users that the current user follows
 *
 * @access      private
 * @since       1.0
 * @return      string
 */

function pwuf_following_posts_shortcode( $atts, $content = null ) {

    // Make sure the current user follows someone
    if( empty( pwuf_get_following() ) )
        return;

    $items = new WP_Query( array(
        'post_type'      => 'any',
        'posts_per_page' => 12,
                'order' => 'DESC',
        'author__in' => pwuf_get_following()
    ) );

    ob_start(); ?>
    <?php
        if ( $items->have_posts() ) : ?>

            <?php

            $archive_content_layout = get_option( 'archive_content_layout', 'th-grid-2' );
            echo '<div class="posts-wrap ' . esc_attr( $archive_content_layout ) . '">';

                /* Start the Loop */
                while ( $items->have_posts() ) : $items->the_post();

                    /*
                    * Include the Post-Format-specific template for the content.
                    * If you want to override this in a child theme, then include a file
                    * called content-___.php (where ___ is the Post Format name) and that will be used instead.
                    */
                    get_template_part( 'template-parts/content', get_post_format() );


                endwhile;

                wp_reset_postdata();

            echo '</div><!-- .posts-wrap -->';

            the_posts_pagination();

        else :

            get_template_part( 'template-parts/content', 'none' );

        endif; ?>
<?php 
    return ob_get_clean();

}
?>

Try this function instead. 请尝试使用此功能。 Be sure pwuf_get_following() returning correct user IDs. 确保pwuf_get_following()返回正确的用户ID。

function pwuf_following_posts_shortcode( $atts, $content = null ) {

    // Make sure the current user follows someone
    if( empty( pwuf_get_following() ) )
        return;
    else
        $userids = pwuf_get_following();

    $userids = array_values(array_filter($userids));    

    $paged = get_query_var('paged') ? get_query_var('paged') : 1;  //remove if pagination works without this

    $items = new WP_Query( array(
        'post_type' => 'any',
        'posts_per_page' => 12,
        'order' => 'DESC',
        'author__in' => $userids,
        'paged' => $paged   //remove if pagination works without this
    ) );

    ob_start(); 

    if ( $items->have_posts() ) : 

        $archive_content_layout = get_option( 'archive_content_layout', 'th-grid-2' );
        echo '<div class="posts-wrap ' . esc_attr( $archive_content_layout ) . '">';

        /* Start the Loop */
        while ( $items->have_posts() ) : $items->the_post();
            /*
            * Include the Post-Format-specific template for the content.
            * If you want to override this in a child theme, then include a file
            * called content-___.php (where ___ is the Post Format name) and that will be used instead.
            */
            get_template_part( 'template-parts/content', get_post_format() );
        endwhile;

        echo '</div><!-- .posts-wrap -->';

        echo paginate_links( array(
            'total' => $items->max_num_pages
        ));

        wp_reset_postdata();
    else :
        get_template_part( 'template-parts/content', 'none' );
    endif;

    return ob_get_clean();
}

Here is the code for your template file. 这是您的模板文件的代码。 Assign this template - 'Show Followers Posts' to your followers posts page once uploaded. 上载后,将此模板-“显示关注者帖子”分配给您的关注者帖子页面。

<?php
/* Template Name: Show Followers Posts */
get_header();
?>
<div id="primary" class="content-area">
    <main id="main" class="site-main" role="main">
        <?php
        // Make sure the current user follows someone
        if( !empty( pwuf_get_following() ) )
        {
            $userids = pwuf_get_following();

            $userids = array_values(array_filter($userids));    

            $paged = get_query_var('paged') ? get_query_var('paged') : 1;  //remove if pagination works without this

            $wp_query = new WP_Query( array(
                'post_type' => 'any',
                'posts_per_page' => 12,
                'order' => 'DESC',
                'author__in' => $userids,
                'paged' => $paged   //remove if pagination works without this
            ) );

            if ( $wp_query->have_posts() ) : 

                $archive_content_layout = get_option( 'archive_content_layout', 'th-grid-2' );
                echo '<div class="posts-wrap ' . esc_attr( $archive_content_layout ) . '">';

                /* Start the Loop */
                while ( $wp_query->have_posts() ) : $wp_query->the_post();
                    /*
                    * Include the Post-Format-specific template for the content.
                    * If you want to override this in a child theme, then include a file
                    * called content-___.php (where ___ is the Post Format name) and that will be used instead.
                    */
                    get_template_part( 'template-parts/content', get_post_format() );
                endwhile;

                echo '</div><!-- .posts-wrap -->';

                echo paginate_links( array(
                    'total' => $wp_query->max_num_pages
                ));

                wp_reset_query();
            else :
                get_template_part( 'template-parts/content', 'none' );
            endif;
        }
        ?>
        </main><!-- #main -->
    </div><!-- #primary -->
<?php
get_sidebar();
get_footer();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM