Ask questions about WordPress courses

Replacing the standard inscriptions in the WordPress admin

Working with WordPress I often stumbled upon a misunderstanding of clients, what is a point POST or Media in admin panel. I recently found a simple and effective solution to this problem on the Internet.. WordPress has a standard solution to replace some of the default admin headers with the function str_ireplace(). I won't tell for a long time., just sharing a working example.

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;
}

I checked everything, works great! Good luck with development ).


Купить хостинг WordPress
WordPress tutor
Online tutoring services. List of courses I teach
  • Basic web design course;
  • Site layout;
  • General course on CMS WordPress and continuation of the course on template development;
  • Website development in PHP.
Read more on the page WordPress tutor
*/

Nikolaenko Maxim

Director of web studies ProGrafika. I am developing, website design and promotion. Always glad to new blog readers and good clients.


You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Templates for WordPress
The best hosting in Ukraine
Stable hosting for Drupal