Using Conditional Tags to restrict something to 1 user?
I don’t know the plugin, but with a rapid eye on it, it seems that what you want is not, but you can rely on widget_content filter fired by the plugin you are using. So, in your theme function.php put: if ( function_exists(‘widget_logic_redirected_callback’) ) add_filter(‘widget_content’, ‘my_widget_for_user’, 10, 2); function my_widget_for_users ($widget_content, $widget_id) { $allowed_users = … Read more