Created
July 1, 2012 23:00
-
-
Save jrstaatsiii/3029955 to your computer and use it in GitHub Desktop.
Home Page Slider with WPAlchemy
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
| //In featured_meta.php | |
| <div class="my_meta_control"> | |
| <p> | |
| <?php $metabox->the_field('featured'); ?> | |
| <input type="checkbox" name="<?php $metabox->the_name(); ?>" value="1" <?php if ($metabox->get_the_value()) echo ' checked="checked"'; ?>/> Add to Home Page Slider | |
| </p> | |
| </div> | |
| //In home.php | |
| <?php | |
| $args = array( | |
| 'post_type' => array('post','portfolio'), | |
| 'meta_key' => 'featured', | |
| 'posts_per_page' => -1 | |
| ); | |
| ?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment