Wordpress

Hide admin bar with a simple GET parameter

WordPress gives your website by default an Admin bar when logged in. Sometimes you just want to see a page without the admin bar. You can open the page in a incognito tab, but you can also just add ‘?nobar‘ to your url.

To let this work, you need to add the following code to your functions.php

if (isset($_GET['nobar'])) {
    add_filter('show_admin_bar', '__return_false');
}

Example for the url would be: https://domain.tld/?nobar

Wordpress

How to update WordPress site urls properly

Run the following SQL query to update your WordPress database with a new site url.

UPDATE wp_options SET option_value = replace(option_value, 'OLD_URL, 'NEW_URL') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid,  'OLD_URL, 'NEW_URL');
UPDATE wp_posts SET post_content = replace(post_content,  'OLD_URL, 'NEW_URL');
UPDATE wp_postmeta SET meta_value = replace(meta_value,  'OLD_URL, 'NEW_URL');
UPDATE wp_options SET option_value = replace(option_value,  'OLD_URL, 'NEW_URL');

It’s also possible to download a stand-alone project for this called Database Search and Replace.

Wordpress

Update WordPress login page logo

Set your custom logo to a WordPress login page. You can do this easily by adding the following code to the functions.php.

function my_login_logo() { ?>
    <style type="text/css">
        #login h1 a, .login h1 a {
            background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/site-login-logo.png);
		height: 65px;
		width: 320px;
		background-size: 320px 65px;
		background-repeat: no-repeat;
        	padding-bottom: 30px;
        }
    </style>
<?php }
add_action( 'login_enqueue_scripts', 'my_login_logo' );

You can read more about editing the login page on this url.

Wordpress

Remove welcome panel from dashboard

It’s very easy to –permanent– remove the welcome panel from the dashboard. You can do it with this one single line. Place it in your functions.php

remove_action('welcome_panel', 'wp_welcome_panel');
Wordpress

wp_nav_menu title

It’s easy to add a menu to your WordPress theme. It’s also easy to add the menu title.. You just got to know it 😉

// Add menu title to the template
echo "<h2>" . wp_get_nav_menu_name('nav-menu') . "</h2>";

// Add menu to the template
wp_nav_menu(
  array('theme_location' => 'nav-menu')
); 
Gutenberg Wordpress

Remove Gutenberg blocks

Add the following code to only allow some Gutenberg blocks to your WordPress site.

add_filter('allowed_block_types', 'setAllowedBlocks');

function setAllowedBlocks($allowed_blocks) {
	$allowed_blocks = array(
        'core/image',
		'core/paragraph',
		'core/heading',
		'core/list'
	);

	return $allowed_blocks;
}
Continue Reading…