这次我的问题涉及 WordPress“阅读更多”链接。我让它正常运行,但不是让阅读更多打开一个新页面或 Fancybox 窗口,我想对其进行编码以打开手风琴。我将有一个包含 10 个帖子且没有存档列表的页面。也不会有上一个或下一个链接。它只是一个标准的 10 个帖子列表 这个想法是将每个帖子作为一个手风琴选项卡,显示更多标签之前的文本,当点击阅读更多时,它将展开该特定帖子。以下是我目前用于自定义循环的代码。提前致谢!
<script>
jQuery(document).ready(function() {
jQuery('.more-link').before('<br/>');
});
</script>
<?php query_posts(array('post_type' => 'news&events', 'showposts' => 10, 'orderby' => 'post_date', 'order' => 'DESC')); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="newsArticle">
<div class="newsThumb">
<?php the_post_thumbnail('news-featured'); ?>
</div>
<div class="newsPostContent">
<div class="newsTitleDate">
<span class="newsTitle"><?php the_title(); ?></span> <span class="newsDate"><?php echo get_the_date(); ?></span>
<div class="clear"></div>
</div>
<?php
global $more;
$more = 0;
the_content('<img src="' . get_bloginfo("template_directory") . '/img/readMore.png" alt="Read More" />');
?>
</div>
<img class="newsDivider" src="<?php echo get_template_directory_uri(); ?>/img/newsDividerLine.png" alt="Divider Line" />
</div>
<?php endwhile; wp_reset_query(); ?>