こんにちは、「最近の投稿プラス」ワードプレス ウィジェット内の抜粋と同じ行にクリック可能なパーマリンクがあるワードプレスの抜粋の最後に、readmore 拡張子「...」を追加しようとしています。
続きを読む拡張子「...」を抜粋の下の別の行に配置する理由がわかりません。ここで私のテストページの下部にある問題の実際の例を見ることができます
ページにこのように表示されます
抜粋
...
できればこのように表示してほしい
抜粋...
これは、リクエストによってウィジェットコード全体を投稿する必要がある場合にそれを制御していると思われるウィジェットからのphpコードです。今のところ、ウィジェット機能のこの部分に使用されている主要なコードビットは次のとおりです。拡張機能を含む抜粋とその出力をページに生成する関数です。
// Custom rpwp_excerpt function
function rpwp_excerpt($count){
$permalink = get_permalink($post->ID);
$excerpt = get_the_content();
$excerpt = strip_tags($excerpt);
$excerpt = substr($excerpt, 0, $count);
$excerpt = substr($excerpt, 0, strripos($excerpt, " "));
$excerpt = $excerpt.'<a href="'.$permalink.'">...</a>';
return $excerpt;
}
//output of the excerpt and title to the page
<p>
<a href="<?php the_permalink(); ?>"><?php the_title_limit( 15, ''); ?></a>
<a href="<?php the_permalink(); ?>"><?php echo rpwp_excerpt($instance['characters']);?></a>
</p>