settings['PostAction']) {
// Set input name
$inputName = 'MoveCategory';
// Grab the selected category
$selCat = $this->settings['MoveCategory'];
echo "
Post Move Options
\r\n";
} else {
// Set input name
$inputName = 'AddCategory';
// Grab the selected category
$selCat = $this->settings['AddCategory'];
echo "Post Add Categories Options
\r\n";
}
$cats = get_all_category_ids();
if (!$cats) {
echo "No Categories Found
";
return;
}
?>