Disabling the Admin Bar for Non-Admin Users

add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }

catalogue

Tyler Carroll
<10

Sort Events Category by Publish Date (Oldest First)

function sort_posts_by_category($query) { if ($query->is_main_query() && !is_admin()) { $oldest_first_categories = array(1483,1486,1485,1484,1482,1391); // Replace with the IDs…

Hello

echo "hello World !";

LifterLMS_DIR_AC_SYNC - LifterLMS Content Sync Engine - Comprehensive Data Version

* LifterLMS Content Sync Engine - Comprehensive Data Version * Syncs courses ONLY with ALL related…

ismail daugherty PRO
<10

Register Multiple Donation Fields

Add multiple new fields to your donation form.

Disable Gutenberg Editor (use Classic Editor)

Switch back to the Classic Editor by disablling the Block Editor.

<10

WPForms: swap price and option value for payment fields

This snippet makes the option label "$40.00 - Second Choice" instead of "Second Choice - $40.00"…

1 94 95 96 97 98 226