Created
January 3, 2013 22:15
-
-
Save WagnerMatos/4447876 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Check if is page-homepage.php template | |
$post_id = (isset($_GET['post'])) ? $_GET['post'] : ((isset($_POST['post_ID'])) ? $_POST['post_ID'] : false); | |
if ($post_id) : | |
$post_template = get_post_meta($post_id, '_wp_page_template', true); | |
if ($post_template == 'page-homepage.php') { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment