Skip to content

Instantly share code, notes, and snippets.

@rezzz-dev
Created August 27, 2012 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rezzz-dev/3489697 to your computer and use it in GitHub Desktop.
Save rezzz-dev/3489697 to your computer and use it in GitHub Desktop.
Add a checkbox to Taxonomy
// Edit term page
function summit_taxonomy_edit_meta_field($term) {
// put the term ID into a variable
$t_id = $term->term_id;
// retrieve the existing value(s) for this meta field. This returns an array
$term_meta = get_option( "taxonomy_$t_id" ); ?>
<tr class="form-field">
<th scope="row" valign="top"><label for="term_meta[displayed]"><?php _e( 'Display Category', 'summit' ); ?></label></th>
<td>
<input type="checkbox" name="term_meta[displayed]" id="term_meta[displayed]" value="1" <?php if( $term_meta['displayed'] == "1" ) { ?>checked="checked"<?php } ?> ">
<p class="description"><?php _e( 'Check to have the Category to displayed on the Sales Page','summit' ); ?></p>
</td>
</tr>
<?php
}
add_action( 'category_edit_form_fields', 'summit_taxonomy_edit_meta_field', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment