In wordpress, it calls header.php then whatever template name or the page requested. How can I declare a variable in my php header which I can then refer to in my other templates?
Leave a Reply
You must be logged in to post a comment.
In wordpress, it calls header.php then whatever template name or the page requested. How can I declare a variable in my php header which I can then refer to in my other templates?
You must be logged in to post a comment.
The answer pretty much depends what you need it for. If you are developing a theme and want to keep values constant through all files you can place them in
functions.php
in the theme directory, which is always loaded. Variables defined there should be available everywhere in the theme. This works if you distribute the theme.If you want to modify an existing theme for your needs on your own installation, you can either put them in
wp-config.php
, as suggested, or (a cleaner method) you can create a child theme of the theme you want to change. This will keep it separate from the wordpress core and will prevent theme updates from overwriting your changes.I just tried it using
functions.php
:functions.php:
header.php:
works for me.
You can declare it like so (In functions.php):
You can echo the domain of the WordPress site like this, though..
Or
Or as a function, in functions.php
Then anywhere, use
<?php displayMyDomain(); ?>
You can define them in
wp-config.php
file.The config file is never updated so your WordPress installation will have those variables over time even if you update it.
Another way to define global consts in WordPress, if for best practice purpose you don’t want to add a variable to your WP-config (to keep it clean ?). And for some reasons your variable scope is not getting the global scope everywhere in your website.
You can simply use :
For more information about consts scope :
http://php.net/manual/en/language.constants.php
I think php session is one of the way to use as a global variable on WordPress.
1. Functions.php
2. Any
.php
file where you want set or get global variablesget variable
set variable