閉じる

技術ブログ

wordpress: the_content htmlタグをとる方法

2021.09.09
WP PHP
$mycontents = get_the_content();
//HTMLタグ除去
$mycontents = wp_strip_all_tags( $mycontents );
//ショートコード除去
$mycontents = strip_shortcodes( $mycontents );
echo $mycontents;