Skip to content

Instantly share code, notes, and snippets.

@Rchristiani
Created October 29, 2013 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rchristiani/7221915 to your computer and use it in GitHub Desktop.
Save Rchristiani/7221915 to your computer and use it in GitHub Desktop.
PHP: My Code Snippet
<div class="alignright">
<?php
if($data['header_right_content'] == 'Contact Info') {
get_template_part('framework/headers/header-info');
} elseif($data['header_right_content'] == 'Social Links') {
get_template_part('framework/headers/header-social');
} elseif($data['header_right_content'] == 'Navigation') {
get_template_part('framework/headers/header-menu');
}
?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment