Skip to content

Instantly share code, notes, and snippets.

@jrstaatsiii
Created July 1, 2012 23:00
Show Gist options
  • Select an option

  • Save jrstaatsiii/3029955 to your computer and use it in GitHub Desktop.

Select an option

Save jrstaatsiii/3029955 to your computer and use it in GitHub Desktop.
Home Page Slider with WPAlchemy
//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