类别中的WordPress帖子将不会显示

时间:2015-08-10 23:39:00

标签: php wordpress categories posts displayobject

我使用名为“自定义内容类型管理”的插件 这允许我创建一个基本上模仿帖子的新内容类型(所有内容都以'用户友好'的名义完成) 除此之外,我写了以下内容:

<h2><?php single_cat_title( '', true ); ?></h2>
<p>
    <?php 
        $page_id = '5536';
        $page_data = get_page($page_id); 
        print apply_filters('the_content', $page_data->post_content);
    ?>
</p>
<p>
    <?php 
        $category = get_the_category(); 
        $category_id = $category[0]->cat_ID;
        print category_description( $category_id );
    ?>
</p>

<div class="category-list">
    <?php wp_nav_menu(); ?>
</div>

<ul class="leaders-container">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
    <li class="leader-container">
        <?php
            $image = get_custom_field('leader_image:to_image_array');
            $url = get_custom_field('website_url:raw');
            print "<img class='leader-image' src='".$image['0']."'>";
        ?>

        <h2>
            <?php the_title(); ?>
        </h2>
        <?php
            print "</h2>";
            the_content();
            if($url != "#") {
                print "<a class='website-button' href='".$url."' target='_blank'>Visit Website</a>";
            }
        ?>
    </li>

<?php endwhile; endif;?>

这是做什么的,是从类别中获取信息,并列出分配给该类别的所有帖子。

在这种情况下,一个帖子被标记为“领导者”,一个类别是他们的“会众”,所以它列出了分配给会众的所有领导人。

这是它应该是什么样子的一个例子 http://www.ubmsonline.org/?leader=rabbi-binyamin-sheldrake

但是,这只能起作用,因为它是来自相关帖子的直接链接

另一方面,该类别正在运作,并确实列出了分配给该类别的许多领导者,现在已停止工作。 http://www.ubmsonline.org/category/ubms-leaders/

正如你所看到的,它正确地将所有内容,类别描述,类别标题等拉出来,但它现在还没有显示帖子。

1 个答案:

答案 0 :(得分:1)

固定!

这与我在使用的“自定义内容类型管理器”插件上更改的设置有关。经过大量的研究,我偶然发现了插件常见问题解答页面“问题”部分的确切问题。

https://code.google.com/p/wordpress-custom-content-type-manager/issues/detail?id=594

希望这可能有助于其他人。

在wp-content / plugins / custom-content-type-manager / loader.php中,可能会对下面提到的过滤器进行注释,因此如果您取消注释此add_filter,则会修复此错误。

// Enable archives for custom post types
    add_filter('request', 'CCTM::request_filter');

再次感谢每个人的帮助。

安德鲁