Installing WordPress Theme Unit Data

If your using a MAC you will need to set file permissions to allow for updating and downloading plugins/themes without the use of setting up the FTP and manually adding them into the htdocs folder. The link below will walk you through this to set it up to work. http://ghosthorses.co.uk/production-diary/auto-update-wordpress-plugins-on-localhost-xampp-on-mac-osx/ http://wpforce.com/auto-update-wordpress-xampp-osx/ This video will show … Read more

How to pass code from header.php to footer.php

Avoid global variables, they could be overwritten by other code. You could use a helper function with a static internal variable instead. Sample code: function wpse_69365_var_storage( $var = NULL ) { static $internal; if ( NULL !== $var ) { $internal = $var; } return $internal; } // first call: wpse_69365_var_storage( 4 ); // later … Read more