I’ve seen various tutorials on how to modify the menu items of a WordPress Site’s admin, but I’m trying to find a tutorial or way on how to modify...
I have some custom code in order to display my custom fields the way I want. Unfortunately, with this code I can’t seem to access the $field['label']. I tried...
How can I modify my following code to add some description text under the input fields? I tried modifying it as you can see with the facebook url field...
For a particular custom post type I’m setting, I simply want to change the default icon to the wordpress pages icon (menu-icon-page). I know I could upload my own...
after a few hours serching on the net I decided to ask here my problem. I’m in a multi site environment and I have this custom post type code:...
Let’s says I have a taxonomy called Types. I know I can have a singular name when registering the taxonomy… so I could just set the singular label to...
I have got something like this: $taxonomies = get_object_taxonomies('my_post_type'); foreach($taxonomies as $tax){ $args['labels'] = get_taxonomy_labels( (object) $args ); $args['label'] = $args['labels']->singular_name; echo $args['label']; } which gives me “Tag” each...
Currently I’m trying to get the post type labels plural. In detail: $GLOBALS['wp_post_types'][ get_current_screen()->post_type ]->labels->name This is how I’m trying to retrieve it – in the admin UI –...