mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-21 16:10:57 +00:00
12 lines
407 B
PHP
Executable File
12 lines
407 B
PHP
Executable File
<?php
|
|
|
|
function _wpo_edit_cat_row($category, $level, &$data)
|
|
{
|
|
$category = get_category( $category );
|
|
$name = $category->cat_name;
|
|
|
|
echo '
|
|
<li class="required pad'.$level.'">
|
|
' . checkbox_tag('campaign_categories[]', $category->cat_ID, in_array($category->cat_ID, $data['categories']), 'id=category_' . $category->cat_ID) . '
|
|
' . label_for('category_' . $category->cat_ID, $name) . '</li>';
|
|
} |