WP Conditions Beispiele

FrageWP-Function
Eingeloggt?is_user_logged_in()
Welche Rolle?current_user_can('edit_posts')current_user_can('administrator')
Welcher Post-Type?is_singular('product')is_post_type_archive('product')
Welche URL?is_page('about')is_page_template('full-width.php')preg_match() auf $_SERVER['REQUEST_URI']
Mobile?wp_is_mobile()
WooCommerce?is_woocommerce()is_shop()is_cart()is_checkout()
Gutenberg Editor?is_admin() && function_exists('get_current_screen')
AJAX-Request?wp_doing_ajax()