我有一个自定义页面模板,用于将类别帖子拉到"页面" 我已经为摘录设置了一个功能来显示。 "阅读更多>>"但是,帖子ID并没有为各个帖子提供固定链接。每篇文章后的摘录都链接到我创建的同一页面。
的functions.php - >
function excerpt($num) {
$limit = $num+1;
$excerpt = explode(' ', get_the_excerpt(), $limit);
array_pop($excerpt);
$excerpt = implode(" ",$excerpt). ' <a href="' . get_permalink($post->ID) . '" class="more-link" title="Read More">Read More >></a>';
echo $excerpt;
}
function excerpt_length($length) {
return 40;
}
add_filter('excerpt_length', 'excerpt_length');
content.php - &GT;
<div class="entry-content">
<?php if ( is_category() || is_archive() || is_search() || is_home() ) {
the_excerpt();
} else {
the_excerpt();
} ?>
</div>
-------我使用类似结果测试的另一项功能,包括全球$ post。
function themprefix_excerpt_read_more_link($output) {
global $post;
return $output . ' <a href="' . get_permalink($post->ID) . '" class="more-link" title="Read More">Read More >></a>';
}
add_filter( 'the_excerpt', 'themprefix_excerpt_read_more_link' );
自定义页面模板 - &gt;
<?php get_header(); ?>
<div id="main" class="row-fluid">
<div id="main-left" class="span8">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php
$catPost = get_posts('cat=225&posts_per_page=3');
foreach ($catPost as $post) : setup_postdata($post);
?>
<?php get_template_part('content'); ?>
<?php endforeach;?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #main-left -->
<?php get_sidebar(); ?>
<div class="clearfix"></div>
</div><!-- #main -->
<?php get_footer(); ?>
答案 0 :(得分:2)
尝试在global $post
功能的开头使用excerpt()
。