Buscar
Cerrar este cuadro de búsqueda.
wordpress trucos con php

Editar la pestaña de «Ayuda» en el escritorio de WordPress

Código para quitar la pestaña de ayuda en WordPress.
Compartir:
Facebook
Twitter
LinkedIn
Pinterest
WhatsApp
Telegram
Reddit

En la parte superior derecha de la pantalla de administración de WordPress hay una pestaña «Opciones de Pantalla» y «Ayuda».
Se  puede utilizar esto para insertar información personalizada.
add_action('load-page-new.php','add_custom_help_page');
add_action('load-page.php','add_custom_help_page');
function add_custom_help_page() {
//the contextual help filter
add_filter('contextual_help','custom_page_help');
}
function custom_page_help($help) {
//keep the existing help copy
echo $help;
//add some new copy
echo "

Custom Features

«;
echo «Content placed above the more divider will appear in column 1. Content placed below the divider will appear in column 2.»;
}

Compartir:
Publicado por:
Facebook
Twitter
LinkedIn
WhatsApp
Pinterest
Telegram
We use cookies in order to give you the best possible experience on our website. By continuing to use this site, you agree to our use of cookies.
Accept