1

有没有办法在 wordpress 中添加到摘录的开头?我尝试像这样添加作者的名字,以便它们都在同一个文本块中:

<strong>(<?php echo get_the_author(); ?>) --</strong> Excerpt text....

它看起来像:

(作者姓名)——摘录文本.....

4

2 回答 2

2
$custom_excerpt = '<strong>('.get_the_author() .') ---</strong>'.get_the_excerpt();
echo $custom_excerpt ;
于 2013-10-17T17:41:17.830 回答
0

试试这个函数:the_author();

供您参考: http ://codex.wordpress.org/Function_Reference/the_author

于 2013-10-17T17:38:39.823 回答