Skip to content

Instantly share code, notes, and snippets.

@tomoyasu999
tomoyasu999 / 20181118_functions.php_1
Created November 18, 2018 10:45
WordpressのカスタムHTMLでPHPを実行するためのコード(子テーマの編集 > functions.php)
/* カスタムhtmlで特定PHPファイルを実行可能にする */
add_filter( 'widget_text', function( $ret ) {
$php_file = 'add-wt-category-head-img';
if( strpos( $ret, '[' . $php_file . ']' ) !== false ) {
add_shortcode( $php_file, function() use ( $php_file ) {
get_template_part( $php_file );
});
ob_start();