我存档了一个脚本。php位于循环之外,它调用函数get\\u blog\\u links()列出属于当前类别(我的“博客”类别)的所有帖子。
我试图在“get\\u blog\\u extract()函数中进行一些跟踪测试,以便写出每篇文章的内容节选或(如果没有出现节选)前55个单词(节选)。
但是,我无法在函数中获取对\\u摘录的引用。
非常感谢您的帮助。
//Blog Listing
function get_blog_links(){
$myposts = get_posts();
echo \'<div>\';
echo \'<ul>\'; foreach($myposts as $idx=>$post){ ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
// THE FUNCTION CALL IM WORKING ON...
<?php echo get_blog_excerpt();?></li>
<?php }
echo \'</ul></div>\';
}
function get_blog_excerpt(){
// return get_the_excerpt(); WORKS
// return the_permalink(); WORKS
// return the_excerpt(); DOES NOT WORK?
// return get_the_content(); DOES NOT WORK?
}