0) ? $value : 0; } function ppl_display_available_tags($plugin_name) { ?>

Report a Bug

' . __('The plugin and all its settings have been completely removed', 'post_plugin_library') . '

'; exit; } } ?>

Remove this Plugin

(a,b matches posts with either tag, a+b only matches posts with both tags)', 'post_plugin_library') ?> size="40" /> get_results("SELECT ID, user_login FROM $wpdb->users ORDER BY user_login"); if ($users) { $excluded = explode(',', $excluded_authors); $included = explode(',', $included_authors); echo "\n\t"; foreach ($users as $user) { if (false === in_array($user->ID, $excluded)) { $ex_ischecked = ''; } else { $ex_ischecked = 'checked'; } if (false === in_array($user->ID, $included)) { $in_ischecked = ''; } else { $in_ischecked = 'checked'; } echo "\n\t"; } } ?>
AuthorExcludeInclude
$user->user_loginID\" $ex_ischecked />ID\" $in_ischecked />
get_results("SELECT * FROM $wpdb->categories WHERE category_count <> 0 ORDER BY cat_name"); $categories = $wpdb->get_results("SELECT * FROM $wpdb->categories ORDER BY cat_name"); } if ($categories) { echo "\n\t"; $excluded = explode(',', $excluded_cats); $included = explode(',', $included_cats); $level = 0; $cats_added = array(); $last_parent = 0; $cat_parent = 0; foreach ($categories as $category) { $category->cat_name = wp_specialchars($category->cat_name); if (false === in_array($category->cat_ID, $excluded)) { $ex_ischecked = ''; } else { $ex_ischecked = 'checked'; } if (false === in_array($category->cat_ID, $included)) { $in_ischecked = ''; } else { $in_ischecked = 'checked'; } $last_parent = $cat_parent; $cat_parent = $category->category_parent; if ($cat_parent == 0) { $level = 0; } elseif ($last_parent != $cat_parent) { if (in_array($cat_parent, $cats_added)) { $level = $level - 1; } else { $level = $level + 1; } $cats_added[] = $cat_parent; } $pad = str_repeat(' ', 3*$level); echo "\n\t"; } } ?>
CategoryExcludeInclude
$pad$category->cat_namecat_ID\" $ex_ischecked />cat_ID\" $in_ischecked />
old
Published Private Draft Future
Field NameField Value
Field NameField Value
ActivatePriorityParametersCondition
ActivatePriorityParameters
ParametersCondition
(via special tags)', 'post_plugin_library') ?>
Activate
leave blank for default order', 'post_plugin_library') ?>
Output TagOrderCase
first
then
get_col( " SELECT meta_key FROM $wpdb->postmeta WHERE meta_key NOT LIKE '\_%' GROUP BY meta_key ORDER BY meta_id DESC LIMIT $limit" ); $metaselect = ""; } ?>
FieldOrderCase
% % % ( adds up to 100% )
(overrides the sort criteria above) ' . $plugin_data['Name'] . ''; } else { $plugin_data['Title'] = $name; } } } return $plugin_data; } function ppl_admin_footer($plugin_file, $donate_key='') { $plugin_data = ppl_get_plugin_data($plugin_file); $output = array(); $output[] = $plugin_data['Title'] . ' plugin'; $output[] = 'Version ' . $plugin_data['Version']; $output[] = 'by ' . $plugin_data['Author']; if ($donate_key) { $donate_url = 'http://rmarsh.com/donate/' . $donate_key . '/'; // random shades of red, orange and yellow to attract attention -- subtly I hope $colour = '#ff' . dechex(mt_rand(0, 255)) . '00'; $output[] = 'All donations welcomed!'; } echo implode(' | ', $output) . '
'; } ?>