Questions tagged [admin]
Users with the ability to perform administrative tasks for a site or a network of sites.
1,735 questions
1 vote
0 answers
27 views
Cannot get rid of 'The new address will not become active until confirmed' after admin email change
All was working fine until I changed the admin email address. An email was sent and the verification link clicked, but the prompt next to the new address that says "The new address will not ...
1 vote
2 answers
107 views
Admin adding submenu that has the same destination as the parent menu
In a plugin I'm trying to to have a submenu which as the same destination as the parent. Using add_menu_page and add_submenu_page with the same menu_slug and no callback for the parent menu. Just like ...
1 vote
2 answers
83 views
Removing Administration Email Address email from the settings, without requiring confirmation
After providing admin support for several prototype websites, with my email used as the "Administration Email Address", I'm no longer required for support, however I have no confidence that ...
0 votes
0 answers
26 views
How to add custom post status to popover in Wordpress > 6.4
Is there a way to add my manually added post status "Archiv" to the popover of a post? If yes, can you give me a example? Regards M.
0 votes
0 answers
24 views
How to order a Custom Fields in admin panel
I have some custom fields in admin panel, some filled and some is empty. I want to order by first all with values and the rest is will be empty fields. How can I do this ?
0 votes
0 answers
29 views
display two things in one admin panel column list
See the attached screenshot of my WordPress admin panel. I want to merge these 2 columns into one column to save the space of width. Is it possible to do this?
1 vote
1 answer
157 views
How is wp_admin_notice supposed to work?
I have a function related to two hooks: // this action only fires if the current user is editing their own profile add_action('personal_options_update', 'yop_save_custom_user_profile_fields'); // ...
0 votes
1 answer
55 views
How to sort a non-meta field in the User Admin Panel?
I'm stuck, and haven't been able to find an answer after much searching. I need to modify the User Admin Panel showing the list of users and the number of posts. I have custom posts (type = 'articles')...
0 votes
1 answer
61 views
I want to display a notification in editor when user saves a post , when certain criteria are met
So far I have this action added on pre_post_update, 10, 3 public function check1($post_id, $data){ if (1==1) { set_transient('1_is_1'. $post_id, true, 30); } return $data; } and ...
1 vote
0 answers
64 views
Delayed server responses when logged in on one browser (any browser!) for a while
This issue sounds kind of ridiculous, but I’ve pinned it down as best I can and ruled out anything obvious. When I’ve been logged in as admin and working on my site in a browser for a while (“a while” ...
0 votes
1 answer
60 views
Remove 3rd party plugin notices from within own plugin
I'm trying to build a plugin (complete novice) and on the landing page of my plugin I don't get the 3rd party plugin notices / banners but with all of my sub pages I do. How can I completely remove ...
1 vote
0 answers
64 views
Wordpress as microblog: show excerpt instead of "(no title)" in posts view
I am using WP (currently v6.5.3) for cross-posting to micro.blog/Mastodon/Bluesky (and occasionally manually posting the items to X or Threads). As such, my posts rarely have titles, which makes it ...
0 votes
0 answers
33 views
Remove element from admin page editing part
I would like to remove few element in the admin page editing part. Here a screen to the elements I want to remove. Thank you !
0 votes
1 answer
47 views
I accidentally rejected my wordpress admin account!
I accidentally rejected my wordpress admin account! How can I recover it? I would be thankful if you kindly help me with this.
0 votes
1 answer
50 views
How can I catch WordPress custom settings page slug has already changed?
I created a custom settings page like below. add_menu_page( __('Management', 'domain'), __('Management', 'domain'), 'activate_plugins', 'management', // <--- ...