K
K
Karen Mnatsakanyan2018-07-27 12:24:54
WordPress
Karen Mnatsakanyan, 2018-07-27 12:24:54

How to rename headings in WordPress?

Good afternoon!
How can I change the heading of a category?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
Z
zorca, 2018-07-27
@zorca

No, this is the localization of the WordPress core.

S
Sergey Savchenko, 2022-02-08
@wvenator

add_action( 'init', function(){
  global $wp_taxonomies;

  $labels                     = & $wp_taxonomies['category']->labels;
  $labels->name               = 'Author';
  $labels->singular_name      = 'Author';
  $labels->add_new            = 'Add Author';
  $labels->add_new_item       = 'Add Author';
  $labels->edit_item          = 'Edit Author';
  $labels->new_item           = 'Author';
  $labels->view_item          = 'View Author';
  $labels->search_items       = 'Search Authors';
  $labels->not_found          = 'No Authors found';
  $labels->not_found_in_trash = 'No Authors found in Trash';
  $labels->all_items          = 'All Authors';
  $labels->menu_name          = 'Author';
  $labels->name_admin_bar     = 'Author';

  // Если хотите вывести все параметры, которые можно изменить, используйте var_dump
  // var_dump($labels); 

} );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question