Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
[...] を特定の投稿へのハイパーリンクとして投稿ページに表示したいと考えています。これが get_the_excerpt() によるものであることがわかります。
これはどのように達成できますか?前もって感謝します。
この関数を functions.php にコピーします
function new_excerpt_more($more) { global $post; return '<span class="readmore"><a class="moretag" href="'. get_permalink($post->ID) . '"> Read more..</a></span>'; } add_filter('excerpt_more', 'new_excerpt_more');