skip to Main Content

enter image description here

I want to change the blue marked portfolio menu to Course. Basically I want to change—
Portfolios—>> Courses
Add New Portfolio –>> Add New Course

And When I add click on add new portfolio it is show add new portfolio. Instead of this I want to show add new course and course setting in the marked area.

I just want to edit it from theme file but unable find it out. Help..me

2

Answers


  1. Which plugin you have used for Adding Portfolios?

    You can customize it by editing theme/plugin templates.

    You will see admin folder which will contain all these files. These name can also be stored in variables so I can’t respond to your query without access to FTP.

    Login or Signup to reply.
  2. Try add_filter( ‘post_type_labels_post’, ‘rename_labels’ ) hook

    add_filter( 'post_type_labels_post', 'rename_labels' );
    function rename_labels($labels){
      $labels->Portfolio='Course';
      return $labels;   
    }
    

    https://wordpress.stackexchange.com/questions/9211/changing-admin-menu-labels

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search