- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经设置了一个 WordPress 模板来完整显示第一个帖子,其他的则作为摘录:http://growthgroup.com/testing-blog
当您转到帖子的第 2 页时,它会完整显示第一个帖子,其他帖子也显示为摘录,但我只希望最近的帖子是完整的帖子,而所有其他帖子都是摘录。
有没有办法解决这个问题?这是我正在使用的代码:
<?php
// query to set the posts per page to 5
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array('posts_per_page' => 5, 'paged' => $paged );
query_posts($args); ?>
<?php if (have_posts()) : ?>
<?php $postcount = 0; // Initialize the post counter ?>
<?php while (have_posts()) : the_post(); //start the loop ?>
<?php $postcount++; //add 1 to the post counter ?>
<?php if ($postcount == 1) : // if this is the first post ?>
<div class="post">
<h3 class="post-title"><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title(); ?></a></h3>
<span class="author-date-blog"><?php the_author();?> | <?php the_date('d M Y');?></span>
<div class="excerpt">
<?php the_content();?>
<div class="read-more">
<a href="<?php the_permalink();?>#disqus_thread">Leave a Comment >></a>
</div>
</div>
</div>
<?php else : //if this is NOT the first post ?>
<div class="post">
<div class="thumb">
<a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_post_thumbnail('blog-thumb');?></a>
</div>
<h3 class="post-title"><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title(); ?></a></h3>
<span class="author-date-blog"><?php the_author();?> | <?php the_date('d M Y');?></span>
<div class="excerpt">
<?php the_excerpt(); ?>
<div class="read-more">
<a href="<?php the_permalink();?>">Read More >></a>
</div>
</div>
</div>
<?php endif; endwhile; //end of the check for first post - other posts?>
最佳答案
如果我理解正确,我认为这可能会满足您的要求:
<?php if ($postcount == 1 && $paged == 1) : // if this is the first post & first page ?>
这应该只在第一页的第一个帖子上触发上部条件。
关于php - WordPress:第一篇完整文章,其他显示摘录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19230265/
我使用 wikipedia api 取得了一些成功,但我需要一些帮助来捕获返回的数据,并将其显示到页面上。我的代码笔的链接是 https://codepen.io/rynsp8/pen/jYyYog
我目前建立了一个系统,我可以从旧帖子/类别中进行训练,并尝试预测新帖子将属于哪个类别。我使用带有 TfidfVectorizer 和 LinearSVC 的管道来训练数据集并将其存储在 pickle
布局是这样的: 感兴趣的是窗口的上半部分;它是一个充满标签的 GridPane,我添加了填充,但是...... 嗯,问题很明显:
(let ((g (* 2 (or (gethash word good) 0))) (b (or (gethash word bad) 0))) (unless (/ngood(作
这个问题在这里已经有了答案: Why is i++ not atomic? (10 个答案) 关闭 7 年前。 如果按照 Effective Java 的摘录下面,类型为 int(整数)的变量在 J
Wordpress 的文档建议将以下内容添加到functions.php 中以实现我想要执行的操作: function new_excerpt_more($post) { return 'ID
我添加了此 PHP 函数以在存档页面上显示我的产品摘录,但它会影响我的其余样式。 我试图阻止我的摘录中的 CSS 影响页面的其余部分。基本上我只想要没有自己的样式或元素符号或图像等的文本。 这是添加的
我正在创建一个 WordPress 模板,现在需要一些代码来创建一个循环来显示所有帖子,但不显示完整帖子,仅显示摘录。 有人可以帮忙吗? 最佳答案 使用此代码生成循环中的摘录: 以上内容仅生成帖子的
我刚刚将我的 Hexo 博客更新到最新版本。更新后,标签似乎停止工作。它没有在主页上显示摘录,而是显示所有内容。我正在使用 Next 主题。 我在hexo github上发现了一个问题:https:/
我正在运行 WordPress REST API(在 WordPress 4.7.3 上),当我点击/wp-json/wp/v2/posts 时,我正在为我的帖子取回 JSON,但内容和摘录字段显示为
我正在编写一些 php 来查询我的 wordpress 博客数据库并在 wordpress 环境之外的主页上显示最新帖子。 我不是很精通 php,但我已经能够显示最新的博客标题以及帖子内容。我想做的是
我目前正在使用 WordPress 和 Yoast WordPress SEO 插件开发我们的网站。我已经检查了 HTML 源并且存在 OpenGraph 元信息: 我们网站 www.verstric
我是一名优秀的程序员,十分优秀!