Skip to content

Alter the WordPress Comments Submit Button Text

Remove Woo Shop Page from Breadcrumbs

function myprefix_breadcrumbs_trail( $trail ) { // Remove cart from trail unset( $trail['shop'] ); // Return trail return $trail; } add_filter( 'wpex_breadcrumbs_trail', 'myprefix_breadcrumbs_trail', 20 );

Read more

Restrict WordPress Content To Logged In Users Only

// Example 1: Restrict access to whole site and redirect to the wordpress login page add_action( 'template_redirect', function() { // Front end only and prevent redirections on ajax functions if ( is_admin() || wp_doing_ajax() ) { return; } // Redirect…

Read more

Disable Responsiveness

Make sure to change 'PAGE_ID' with the ID of the page where you want to disable responsiveness or change the entire is_page() conditional for your own conditional checks.

Read more
Back To Top