Skip to content

Instantly share code, notes, and snippets.

View mamouneyya's full-sized avatar

Ma'moun Diraneyya mamouneyya

View GitHub Profile
@mamouneyya
mamouneyya / customtaxonomydropdown.php
Created February 15, 2012 17:28 — forked from hameedullah/customtaxonomydropdown.php
Custom Taxonomy drop downs for parents and child
<?php
/*
Plugin Name: Custom Taxonomy DropDown
Author: Hameedullah Khan
Aurhot URI: http://hameedullah.com
*/
// change this to your taxonomy
$brand_taxonomy = 'category';
@mamouneyya
mamouneyya / wpalchemy-tinymce-template.php
Created January 31, 2012 18:25
Repeatable and sortable TinyMCE fields for WP Alchemy class
<?php while($mb->have_fields_and_multi('GROUP-NAME')): ?>
<?php $mb->the_group_open(); ?>
<p class="update-warning">Remember, you must save the page for the sort order to take effect.</p>
<?php $metabox->the_field('CONTENT-FIELD'); ?>
<label for="<?php $metabox->the_name(); ?>">FIELD LABEL</label>
<div class="customEditor">
<textarea rows="10" cols="50" name="<?php $mb->the_name(); ?>" id="<?php $mb->the_name(); ?>"><?php $mb->the_value(); ?></textarea>
</div>