2022年6月5日の投稿[6件]
2022年6月5日(日)16:04:25
593文字
WEB,WordPress
2022年6月5日(日)12:38:57
635文字
WEB,WordPress
固定ページで抜粋表示したい場合はfunctions.phpに下記コードを記入すれば良いらしい。
add_post_type_support( 'page', 'excerpt' );
下記コードを子テーマのfunction.phpに追記して抜粋の文末にされる[…]を…に変更した。
// 抜粋末尾の文字列を[…]から変更する
function my_excerpt_more($more) {
return '・・・';
}
add_filter('excerpt_more', 'my_excerpt_more');
下記コードを子テーマのfunctions.phpに追記して抜粋の文字数制限を80文字にした。
function my_excerpt_length($length) {
return 80;
}
add_filter('excerpt_mblength', 'my_excerpt_length');
pタグを消す
<?php the_excerpt(); ?>
↓
<?php echo get_the_excerpt(); ?>
に変更してPタグを消せるらしい。
参考:WordPressの抜粋で知っておくべき基本と3つのカスタマイズ - Offise Kondo
https://takayakondo.com/wordpress-excerp...
2022年6月5日(日)12:23:39
123文字
WEB,PCソフト&アプリ
オンライン重複行削除ツール
http://txt.3m3g.com/
しかもPRO版があるくせに無料って可愛い奴じゃねーか
オンライン重複行削除ツール PRO(無料)
http://txt.3m3g.com/index2.php
2022年6月5日(日)11:41:58
178文字
WEB,WordPress
esc_html()
strip_shortcodes()
wp_strip_all_tags()
これら使ってみてもダメだった。
WordPressの記事中に長いJavaScriptを入れるのがダメとか…?
2022年6月5日(日)10:04:06
177文字
日記,買い物
2022年6月5日(日)09:01:27
158文字
日記,書籍・古本・古書
/* 検索結果で検索文字をハイライトする
---------------------------------------------------------- */
function highlight_search_results($content) {
if (!is_admin() && is_search() && is_main_query()) {
$keys = implode('|', explode(' ', get_search_query()));
$content = preg_replace('/'. $keys .'/iu', '<mark>$0</mark>', $content);
}
return $content;
}
add_filter('the_title', 'highlight_search_results');
add_filter('the_excerpt', 'highlight_search_results');
参考:[WordPress] 検索結果で検索文字をハイライトする方法
https://b.0218.jp/20170908225013.html