PHP [WordPress] 記事中に特定のショートコードが含まれているかをチェックする方法 2017年10月13日 <?phpglobal $post;// [news_topics] というショートコードが含まれているかif( has_shortcode( $post->post_content, 'news_topics' ) ) { // 何らかの処理}