不显示带有自定义字段的帖子

时间:2015-07-01 作者:Olen

使用的插件:类型

我用自定义帖子和Wordpress的常规帖子创建了帖子。但是,自定义帖子不会出现在网站上。仅显示常规帖子。

在这里,我创建了自定义帖子:Custom Posts

在这里,我创建了定期Wordpress发布的帖子:Wordpress Posts

以下是第9类(特色)中的两篇最新帖子:2 latest posts within the category 9

如您所见,它没有显示使用自定义贴子制作的贴子。这不是唯一的例子,但这是最容易解释的例子。

Code

        <div class="col-md-12 myeluft">
            <?php
                $catquery = new WP_Query( \'cat=9&posts_per_page=2\' );
                while($catquery->have_posts()) : $catquery->the_post();     
            ?>  
            <div class="featured-post">
                <ul>    
                    <li>
                        <div class="col-md-5 featuredimage myeluftned"> 
                            <?php the_post_thumbnail( \'singlepost-thumb\' ); ?>
                        </div>
                        <div class="col-md-7 myeluftned">
                            <h2 class="nomargintop blacklink">
                                <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
                            </h2>
                            <div class="light offblack">
                                <?php the_content(); ?>
                            </div>
                            <a href="<?php the_permalink() ?>" rel="bookmark">
                                <button class="btn thin luft" type="button">Se prosjekt</button>
                            </a>
                        </div>
                    </li>
                </ul>
            </div>
            <div class="col-md-12">
                <hr class="myeluft clearboth">
                <?php endwhile; ?>
            </div></div>
有人吗?

如果你愿意,我会发布详细的信息,我只需要知道你想知道什么。

是否有一个功能我需要使自定义字段后工作?

Suggestions:

<功能。php,这里有问题类型,设置有问题

1 个回复
最合适的回答,由SO网友:Olen 整理而成

通过使其显示所有帖子类型,问题得以解决:

$args = array(
    \'cat\' => 9,
    \'posts_per_page\' => 2,
    \'post_type\' => \'any\',
);
new WP_Query($args);

结束

相关推荐

有条件地更新edit.php上的css

我想根据一些日期检查更改posts表中每一行的背景色。我需要更改的css是tr#post nnnn{背景颜色:$myColor},其中nnnn是post编号,$myColor是由5种预定义颜色组成的数组。我已经考虑过如何进行这项工作,并提出了以下提纲,但如果能就我是否朝着正确的方向前进以及解决这类问题的标准流程提供一些建议,我将不胜感激。这是一般的伪想法。。。add_action( \'admin_print_styles-edit.php\', \'my_order_highlighter\' );