未显示自定义发布类型,自定义WP_QUERY

时间:2017-05-09 作者:Sergi

我的帖子在那里显示了一段时间,但现在它们从我的页面上消失了。在调试模式下,我看不到任何错误,也没有错误消息,我真的不知道为什么我的帖子不会显示这段代码,特别是当它以前工作时。我所做的就是添加高级自定义字段插件,添加几个字段,将它们链接到我的帖子并保存。然后我的帖子就不见了。我已经禁用并删除了插件,重新制作了我的所有帖子,但没有任何效果。

                <div class="artiq-slidder">

                        <ul class="artiq-slidder-ul">

                            <?php

                                $args = array(
                                        "post_type" => "piso"
                                );
                                $the_query = new WP_Query( $args );

                            ?>

                            <?php if( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>

                                <li class="artiq-slidder-item">


                                <img src="<?php the_post_thumbnail(); ?>">  

                                     <a href="<?php the_permalink(); ?>">
                                        <p> <?php the_title(); ?> </p>
                                      </a>
                                </li>

                            <?php endwhile; endif; ?>


                        </ul>

                    </div>

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

请尝试以下操作:

 <?php if( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
谢谢你

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post

未显示自定义发布类型,自定义WP_QUERY - 小码农CODE - 行之有效找到问题解决它

未显示自定义发布类型,自定义WP_QUERY

时间:2017-05-09 作者:Sergi

我的帖子在那里显示了一段时间,但现在它们从我的页面上消失了。在调试模式下,我看不到任何错误,也没有错误消息,我真的不知道为什么我的帖子不会显示这段代码,特别是当它以前工作时。我所做的就是添加高级自定义字段插件,添加几个字段,将它们链接到我的帖子并保存。然后我的帖子就不见了。我已经禁用并删除了插件,重新制作了我的所有帖子,但没有任何效果。

                <div class="artiq-slidder">

                        <ul class="artiq-slidder-ul">

                            <?php

                                $args = array(
                                        "post_type" => "piso"
                                );
                                $the_query = new WP_Query( $args );

                            ?>

                            <?php if( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>

                                <li class="artiq-slidder-item">


                                <img src="<?php the_post_thumbnail(); ?>">  

                                     <a href="<?php the_permalink(); ?>">
                                        <p> <?php the_title(); ?> </p>
                                      </a>
                                </li>

                            <?php endwhile; endif; ?>


                        </ul>

                    </div>

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

请尝试以下操作:

 <?php if( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
谢谢你

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post