问题是无论我开什么帖子,它都能让我找到一个特定的帖子。原因是我编写single.php循环函数的方式。它只是得到所有的帖子,并打开第一个,我知道我的错误在哪里,但我不知道我如何修复。这是我的单独的.php代码。
<?php
$args = array('posts_per_page' => 1, 'order' => 'DESC');
query_posts($args);
while (have_posts()) : the_post();
所以我明白了,为什么它会让我得到这样的结果,但我该如何修复它呢?
所以我想通了!
这是关于这一节的全部内容
$args = array('posts_per_page' => 1, 'order' => 'DESC');
query_posts($args);
它是不需要的,如果我能更好地了解single.php,我会弄明白的,顺便说一句,这里是工作的代码。
<?php
// Start the loop.
while ( have_posts() ) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
// Previous/next post navigation.
the_post_navigation( array(
'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'twentyfifteen' ) . '</span> ' .
'<span class="screen-reader-text">' . __( 'Next post:', 'twentyfifteen' ) . '</span> ' .
'<span class="post-title">%title</span>',
'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'twentyfifteen' ) . '</span> ' .
'<span class="screen-reader-text">' . __( 'Previous post:', 'twentyfifteen' ) . '</span> ' .
'<span class="post-title">%title</span>',
) );
// End the loop.
endwhile;
?>
基本的single.php不做任何更改
问题内容: 我正在使用以下代码发送请求: 在PHP方面,我有这个: 但是,即使category和tag变量都具有值,控制台也会记录一个空数组。我的帖子出了什么问题? 问题答案: 在发送呼叫之前添加: 更换: 与 希望这可以帮助。
帖子打赏列表 帖子打赏 新版帖子打赏 帖子点赞列表 GET /group-posts/:post/rewards 参数 名称 类型 说明 limit integer 默认 15 ,数据返回条数 默认为15 offset integer 默认 0 ,翻页标识。 order string 默认 desc, asc 升序 desc 降序 order_type string 默认 date, amou
我发现了这个网站:http://www.jfletcherdesign.com. 我想复制一下主页上显示他所有帖子的特色图片的方式,以及当你点击你在特定帖子中深入查看的图片时显示的方式。我还想复制一下你是如何在一个类别中点击“前进”和“下一步”并将一个图像添加到相应的帖子中的。 有人能为我指出设置此功能的正确方向吗? 如果你能给我指出jQuery插件的话,我会得到额外的积分,该插件在他的分类页面上
你好,我想找到用户所做的帖子... 我使用JWT令牌执行请求: 这是我的创建函数: 这是我的函数,我想在其中获取用户发表的帖子: 这是我为博文准备的模型: 每次我做一个请求它有这个错误: 我的生成令牌:
问题内容: 我有一张桌子上有用户帖子。我需要显示每天每位用户从1到最多n条帖子。 例子: 我需要一个查询,例如返回每个用户每天最多2条帖子的查询: 我尝试使用GROUP和HAVING,但是我仅获得前n个记录,而不是每个用户每天的前n个记录: 问题答案: 试试这个糟糕的SQL代码:) 结果: 在这里摆弄。 我认为如果按日期降序排序会更合适,因为实际上是最接近当前日期的前2位。
最后,将'form_params'更改为'query'会给出: