Skip to content

Instantly share code, notes, and snippets.

@kurudrive
Created January 7, 2019 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurudrive/cafda2f076ad8668490f71ed729d7315 to your computer and use it in GitHub Desktop.
Save kurudrive/cafda2f076ad8668490f71ed729d7315 to your computer and use it in GitHub Desktop.
WordPressでテーマのテンプレートファイルではなくプラグインなどから任意のファイルを読み込ませる ref: https://qiita.com/kurudrive/items/e041da63b981332653c6
function my_custom_template_file() {
if ( get_post_type() == 'post' && is_single() ) {
// 読み込ませたいファイルを指定
require( 'template-parts/doc/frame-salary-archive.php' );
die();
}
}
add_action( 'template_redirect', 'my_custom_template_file' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment