How to restrict sidebar element to homepage in Wordpress
admin
Use the following code to restrict a piece of sidebar content to the homepage (so that it does not appear sitewide) in Wordpress:
In sidebar.php, add the following:
<?php if (is_home())
{
some PHP code
}
?>
That’s it!
Posted in Coding |
No Comments »




