有沒有方法可以添加到wordpress摘錄的開頭?我嘗試在作者的姓名這樣的補充,所以它的所有文本的同一區塊內:Wordpress在摘錄開頭添加作者姓名
<strong>(<?php echo get_the_author(); ?>) --</strong> Excerpt text....
它看起來像:
(AUTHORNAME) -摘錄文字。 ...
有沒有方法可以添加到wordpress摘錄的開頭?我嘗試在作者的姓名這樣的補充,所以它的所有文本的同一區塊內:Wordpress在摘錄開頭添加作者姓名
<strong>(<?php echo get_the_author(); ?>) --</strong> Excerpt text....
它看起來像:
(AUTHORNAME) -摘錄文字。 ...
$custom_excerpt = '<strong>('.get_the_author() .') ---</strong>'.get_the_excerpt();
echo $custom_excerpt ;
完美!感謝你! – user1272433
乾杯..這很容易 – codepixlabs
試試這個函數:the_author();
您refence:http://codex.wordpress.org/Function_Reference/the_author
我沒有任何麻煩讓作者來顯示,我需要添加the_author();或get_the_author(); into the_excerpt();以便它在摘錄文本之前和片段中的第一行文本內顯示。不過謝謝。 – user1272433
和問題是什麼? – codepixlabs