whitework
BAIサポトピア by AnimaGate, Inc.
•Created by whitework on 7/9/2024 in #フォーラム(nishiki-pro)
投稿一覧内の抜粋について
ご無沙汰しております。
ブロックの投稿一覧にて抜粋を表示させています。
抜粋内で改行や文字色などhtmlを効かせたいのですが、方法が判りません。
マニアルに「フックを使ってアーカイブページなどの投稿の「抜粋」の周辺の html を変更する方法」を使うのかと思うのですが、
functions.php の最後に下記を追記すれば解決するのでしょうか?
phpについて全く知識ないので初歩的な質問かもしれないです。
お恥ずかしいですが教えて下さい。
/抜粋 html変更
if ( ! function_exists( 'nishiki_pro_custom_excerpt_html' ) ) {
function nishiki_pro_custom_excerpt_html( $html, $post_id ){
if( $post_id == 11059 ){
$html = 'test';
}
return $html;
}
add_filter( 'nishiki_pro_excerpt_html', 'nishiki_pro_custom_excerpt_html', 10, 2 );
}
7 replies