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');
Tips & tricks about Frontend and Wordpress
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');
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')
);
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…