¿Estás buscando una forma de reemplazar palabras en el admin de WordPress? Este fragmento de código utiliza los filtros gettext
y ngetext
para reemplazar una serie de palabras en la administración de WordPress.
Instrucciones:
- Añade este código al archivo functions.php de tu tema o en un plugin específico del sitio.
- Edite el array
$words
. Añada las palabras que desea sustituir a las claves y el texto de sustitución a los valores de las claves.
add_filter( 'gettext', 'wps_translate_words_array' ); add_filter( 'ngettext', 'wps_translate_words_array' ); function wps_translate_words_array( $translated ) { $words = array( // 'word to translate' = > 'translation' 'Posts' => 'Article', 'Post' => 'Articles', 'Pages' => 'Stuffing', 'Media' => 'Upload Images', 'Links' => 'Blog Roll', ); $translated = str_ireplace( array_keys($words), $words, $translated ); return $translated; }
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si le gustó este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: Cómo crear correctamente una página de inicio de sesión personalizada en WordPress (paso a paso).
Perfect! The only place it didn’t change was the left-hand dashboard navigation menu. However, I found another article (from another site) that fixes that issue. Thank you!
it didnt work for me
Hi Andrew,
Which file did you paste the code into?
Thanks for sharing the tips. Simple yet powerful. Wonder will it clash with the custom plugin. but will try this out.
Also besides from wanting to change 7308064.jpg as post title to anpther words can you please help on telling me how to show images while in edit post mode,
Note i am a newbie but would like to learn
Thanks
Hi
Thanks for the great trick wondering if could shed light on the below
what if i have 7308064.jpg as title how do i go about replacing this to whatever i want
can i add a shortened link followed by some keywords.
[…] from WPSnipp.com (Update: added “if is_admin” […]
Wow! i didn’t about this before. sometimes for certain scenarios it would be great to rename some WP items, like you did to Posts -> Articles.
Keep up the great work 😉
Hi Wesam, glad you like the snippet, great if you have a few things within the wordpress admin you want to change. Enjoy the wpsnipp 🙂