LoginSignup
2
3

More than 5 years have passed since last update.

Wordpressで変数をphpファイル同士で共有したいとき

Posted at

例えば

get_header();

get_footer();

を使ってheader.phpやfooter.phpを呼び出している場合、
呼び出し元で定義された変数は呼び出し先にて使うことはできない。

それらのファイル同士で変数を共有したいときは、
get_headerでなく、includeを使って出力すると良い。

<?php include(TEMPLATEPATH . '/header.php'); ?>
2
3
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
2
3