i’ve just created a new post type. It’s name is Academias so the first menu option is Academias as well. But I would like to change it to something like See All Academias (just an example), is that possible?
Leave a Reply
You must be logged in to post a comment.
The function register_post_type() takes an argument
'labels'
. This is an array, one of the possible keys is named ⦠tada! â¦'menu_name'
.Sample code
Update
Now, that Iâve understood your question better, there seems to be only one way to accomplish what you want: hook into
attribute_escape
.Test Plugin
}
Â
Not very elegant, but at least a solution â¦
Update 12.05.2010
In ticket 17378 a new parameter
all_items
was proposed. That should work much better, once itâs part of the core â¦