Skip to content

Instantly share code, notes, and snippets.

@rocket-martue
Last active December 26, 2020 08:32
Show Gist options
  • Save rocket-martue/98c32b388242f226456da064924d9815 to your computer and use it in GitHub Desktop.
Save rocket-martue/98c32b388242f226456da064924d9815 to your computer and use it in GitHub Desktop.
テーマのincディレクトリにあるテンプレートを呼び出すショートコード
add_shortcode( 'inc_file', function ( $atts ) {
extract( shortcode_atts(
array(
'slug' => '',
), $atts ) );
ob_start();
get_template_part( 'inc/'.$slug );
$html = ob_get_contents();
ob_end_clean();
return $html;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment