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.
関数で投稿の $content にある [ショートコード] とショートコードの内容を自動削除できますか? コードやショートコードではなく、作成者のみがテキストを配置できるようにしてください。
ありがとう
wp_insert_post_dataにフックする必要があります。
PHP:
function remove_shortcodes( $data , $postarr ){ $data['post_content'] = strip_shortcodes( $data['post_content'] ); return $data; } add_filter( 'wp_insert_post_data', 'remove_shortcodes', '99', 2 );
参考文献: