wordpress

wordpress

Remove menus and submenus from the WordPress Dashboard

Sometimes you might need to remove posts, pages, plugins or other menus and submenus from the WordPress dashboard. Here’s two handy functions put together to remove all by Chris_O over at StackExchange. Simply add these to the functions.php file in your WordPress theme then delete or comment out whichever options you don’t wish to use. […]

Remove menus and submenus from the WordPress Dashboard Read More »

How to remove entire admin menu?

The correct hook to use is admin_menu and then create a function to remove the menus you want to remove. The following 2 functions remove all the menus. add_action( ‘admin_menu’, ‘remove_admin_menus’ ); add_action( ‘admin_menu’, ‘remove_admin_submenus’ ); //Remove top level admin menus function remove_admin_menus() { remove_menu_page( ‘edit-comments.php’ ); remove_menu_page( ‘link-manager.php’ ); remove_menu_page( ‘tools.php’ ); remove_menu_page( ‘plugins.php’

How to remove entire admin menu? Read More »

Cachify: Smartes, effizientes Caching-Plugin für WordPress

http://playground.ebiene.de/cachify-wordpress-cache/   – Cache-Leerung aus Drittanwendungen Für den Fall, dass der Cachify Cache aus WordPress-Drittanwendungen geleert werden soll, stehen innerhalb des Plugins (ab Cachify 2.0.3) ausführbare Aktionen zur Verfügung: if ( has_action(‘cachify_flush_cache’) ) { do_action(‘cachify_flush_cache’); } if ( has_action(‘cachify_remove_post_cache’) ) { do_action(‘cachify_remove_post_cache’, 123); // postID }

Cachify: Smartes, effizientes Caching-Plugin für WordPress Read More »

Como restaurar as colunas no dashboard do WordPress?

Com o lançamento do WordPress 3.8, tivemos uma sensível diferença no dashboard para quem utiliza monitores com grandes resoluções: o Dashboard agora é responsivo, tendo eliminado a opção de definir quantas colunas devem aparecer nesta tela inicial. Quem usa grandes resoluções pode ter achado estranho ver o painel com 4, 5 colunas e não ter

Como restaurar as colunas no dashboard do WordPress? Read More »