0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WordPressの投稿記事・固定ページ本文中にショートコードでテーマ内のphpを呼び出す

Posted at

#PHPファイルを読み込むショートコード
function.phpに以下を追加

function my_tmp_code($atts) {
 extract(shortcode_atts(array('file' => 'default'), $atts));
 ob_start();
 include(STYLESHEETPATH . "/$file.php");
 return ob_get_clean();
}
add_shortcode('my_tmp', 'my_tmp_code');

#本文で呼び出すときのコード

[my_tmp file='ここにテーマ内のphp名(phpを除く']
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?