1

我正在尝试自动排除所有没有设置自定义字段的文章。我已经检查了 'instant_articles_before_render_post' 和 'instant_articles_after_render_post' 挂钩,但我想知道如何使用它们来阻止文章的呈现。有任何想法吗?

4

2 回答 2

0

instant_articles_before_render_postinstant_articles_after_render_post用于在后期渲染之前/之后启动操作,但不能阻止后期渲染。您需要做的是连接pre_get_posts以更改 Facebook Instant Articles 使用的主要查询。

如果您查看facebook-instant-articles.php插件文件,您将看到以下函数:

function instant_articles_query( $query ) {
    if ( $query->is_main_query() && $query->is_feed( INSTANT_ARTICLES_SLUG ) ) {
        $query->set( 'orderby', 'modified' );
        $query->set( 'posts_per_page', 100 );
        $query->set( 'posts_per_rss', 100 );
        /**
         * If the constant INSTANT_ARTICLES_LIMIT_POSTS is set to true, we will limit the feed
         * to only include posts which are modified within the last 24 hours.
         * Facebook will initially need 100 posts to pass the review, but will only update
         * already imported articles if they are modified within the last 24 hours.
         */
        if ( defined( 'INSTANT_ARTICLES_LIMIT_POSTS' ) && INSTANT_ARTICLES_LIMIT_POSTS ) {
            $query->set( 'date_query', array(
                array(
                    'column' => 'post_modified',
                    'after'  => '1 day ago',
                ),
            ) );
        }
    }
}
add_action( 'pre_get_posts', 'instant_articles_query', 10, 1 );

您可以在此之后立即挂钩并添加您自己的元条件,如下所示:

function instant_articles_query_modified($query) {
    if($query->is_main_query() && isset(INSTANT_ARTICLES_SLUG) && $query->is_feed(INSTANT_ARTICLES_SLUG)) {
        $query->set('meta_query', array(
            array(
                  'key' => 'your_required_meta'
            )
        ));
}
add_action('pre_get_posts', 'instant_articles_query_modified', 10, 2);
于 2016-04-18T13:14:11.600 回答
0

谢谢。上面的代码不能很好地工作,因为它缺少一个结束 } 并且 isset 导致了一个问题。

试试这个:

    function instant_articles_query_modified($query) {
        if($query->is_main_query() && null!==INSTANT_ARTICLES_SLUG && $query->is_feed(INSTANT_ARTICLES_SLUG)) {
            $query->set('meta_query', array(
                array(
                      'key' => 'your_required_meta'
                )
            ));    
        }
    }
于 2016-05-22T09:26:45.967 回答