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
| <?php | |
| /* | |
| Handles the front page layout | |
| */ | |
| function home_slider() { ?> | |
| <div id="amslider"> | |
| <?php if ( function_exists( 'soliloquy' ) ) { soliloquy( '43' ); } ?> | |
| </div> |
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
| <?php | |
| /** | |
| * Template Name: Homepage test | |
| */ | |
| function home_slider() { ?> | |
| <div id="amslider"> | |
| <?php if ( function_exists( 'soliloquy' ) ) { soliloquy( '43' ); } ?> | |
| </div> | |
| <?php } |
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
| <?php | |
| /** | |
| * Template Name: All the Numerals | |
| * Description: template for the numerals page | |
| */ | |
| function amcs_numgrid() { | |
| $args = array( | |
| 'post_type' => 'numeral', // enter your custom post type |
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
| <?php | |
| // Adding option to use featured image (if it exists) | |
| // in place of background image | |
| remove_action( 'genesis_after_header', 'beautiful_site_header_banner'); // removes existing banner image | |
| add_image_size( 'featured-banner', 2000, 200, TRUE ); // creates a featured image size for the banner | |
| function amcs_featured_img() { |
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
| <?php | |
| /* | |
| Template Name: blog page v1 | |
| */ | |
| get_header(); ?> | |
| <?php if(get_post_meta($post->ID, 'ace_wide', true)) { echo '<section class="section-wide" role="main">'; } else { echo '<section class="section" role="main">'; } ?> | |
| <?php echo ace_breadcrumb(); ?> |
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
| <?php | |
| /** remove_action('genesis_loop','genesis_do_loop'); **/ | |
| function amcs_artists_featuredimg() { ?><div id="artist-img"><?php | |
| if ( has_post_thumbnail() ) | |
| the_post_thumbnail( 'full size' ); ?></div> | |
| <?php } | |
| function amcs_artists_about() { ?> |