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
CodePudding user response:
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 cant respond to your qurey without access to FTP.
CodePudding user response:
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

