Users with the ability to perform administrative tasks for a site or a network of sites.

learn more… | top users | synonyms (1)

0
votes
1answer
213 views

Custom bulk action for media gallery items

I'm trying to add custom "Bulk Actions" to WP 3.5 new media gallery items. I started from this excellent tutorial which does exactly what I need, but with regular posts; so i tried to adapt it to work ...
0
votes
0answers
27 views

Admin approval needed for media/photo upload

We have a website with a function of uploading photo Wordpress provides admin approval for posting user reviews But we need this function to uploaded photo. when user upload a photo, it is ...
168
votes
108answers
59k views

Best Collection of Code for your functions.php file [closed]

Please vote on the question and any answers you find useful by clicking on the UP arrow on the left hand side of the question or answer. As with many others who are now viewing this post, I have been ...
1
vote
6answers
413 views

Can I manage more wordpress sites with one wordpress administrator page?

I would like to find a solution, where I can administer multiple wordpress sites (50 plus) using one wordpress admin interface or other tool. I would like to manage plugins and content on these sites. ...
2
votes
3answers
348 views

Sends out email to admin

Are there any plugin or code that sends out a email to me (admin) when a author or writer publish a post?
0
votes
0answers
17 views

Why do Admins and Guests see different pages? [closed]

For some reason when I'm signed in as an Admin I see different content on my custom pages versus when I'm signed in as a Guest. I tested this by adding "TEST!" to the top of the page. I can only see ...
1
vote
1answer
35 views

SlideDeck 2, make back-end visible for admins only

I'd like to make the back-end of the SlideDeck 2 plugin visible for admin users only. Also I'd like to remove that "Insert SlideDeck" button from the Editor. How can I do this?
1
vote
3answers
542 views

Add extra field when admin create user

I have created extra field that user can edit on their 'Your Profile' page. The extra field also available on WordPress register page. What I want to ask is, how to add the field to User > Add new ...
0
votes
0answers
69 views

Can't access my wp admin

I have a wp website.. i love it asit's easy to update. the website is still live and is working fine but i went to use the wp admin lastnight and for some reason it suddenly won't let me access the wp ...
1
vote
2answers
37 views

Remove default subpages from Custom Post Menu

I am creating a Custom Post Type using register_post_type. After running the function a new menu item appears in the Admin Panel. Under this item there are menu items for new_item and all_items. Is ...
0
votes
0answers
105 views

localhost Wordpress administrator area access disabled temporarily due to widespread brute force attacks

I'm using wordpress for my site. On the Administrator login link there is this message coming up: "Wordpress administrator area access disabled temporarily due to widespread brute force attacks" So, ...
2
votes
0answers
54 views

Is it safe to post form data via Ajax to the settings api? Am I missing something?

In my Wordpress Admin, I have my theme options set-up using the Settings API. I am trying to save the theme options form using Ajax so that the page does not refresh. The only thing i needed to add ...
0
votes
0answers
13 views

I need to display a joomla table into a wordpress site

I need to display a database that is made in joomla, into a wordpress site. I tried to import CSV file, I get the data but display is wrong. I want to see the database in wordpress the same way I ...
0
votes
3answers
43 views

Add a 'guide' image to custom post type admin page

I've created a custom post type and on the admin page for that post type I want an image displayed that can act as a guide for the users uploading images. Is there a function that I can use to insert ...
1
vote
0answers
2k views

Wordpress administrator area access disabled temporarily due to widespread brute force attacks

My wordpress site admin side return this error. 'Wordpress administrator area access disabled temporarily due to widespread brute force attacks'. Can't access the site. Any one have similar experience ...
0
votes
1answer
97 views

Wordpress admin loads erratically “connection reset by peer”

I've been managing an Wordpress install for several months now without issues. This morning a user notified me that they could not log in to the admin page via /wp-admin. I was not able to login from ...
1
vote
0answers
20 views

Calling a function on admin_init when WP core files are in a subdirectory [closed]

I have an install set up along the lines of this tutorial, whereby my core files (wp-admin, wp-includes) are separate from the content folder: /wp/wp-includes/ /wp/wp-admin/ /wp/wp-load.php etc ...
1
vote
0answers
35 views

Adding (blog-specific) links to “My Sites” admin page

The My Sites admin page only has links to the sites’ dashboards and production pages which is of limited value. I am trying to figure out a way to add a more useful links to them like New Post, ...
0
votes
0answers
17 views

Call back saved information in the admin menu and output in header - WordPress

I am trying to call the saved option from admin menu and display it in the header. here is my code. but this code at lines function headerout() { echo "stuff{$opt_val}"; } add_action('wp_head', ...
0
votes
1answer
74 views

Changing admin user id for database

Is it correct or ok to change default admin user id from 1 to any other number as done by better-wp-security plugin for wordpress for better security? what is best way for admin security. Thanks
0
votes
0answers
26 views

Unregister default admin styles from specific admin page

I'm trying the following code in theme's function.php: function mypage_remove_scripts() { wp_deregister_style( 'wp-admin' ); } add_action( 'mypage', 'mypage_remove_scripts' ); But that doesn't ...
0
votes
1answer
27 views

How do I create a post_id column, for admin posts list?

I'm trying to add a column to display the post_id from the wp_postmeta table. I would like to display it in the admin posts list. Here is my code: add_filter( 'manage_edit-movie_reviews_columns', ...
0
votes
0answers
23 views

Dissapered all posts by 2013 year

Dissaperd all posts posted in 2013. There are no posts, images and tags for this year. I've checked it in the phpMyAdmin and find them. But they don't shows in administrtor panel. Any idea? Thanks!
1
vote
4answers
538 views

Using require_once() within admin

In my theme directory I have the following structure: /includes/functions-custom.php /includes/avatax/AvaTax.php /includes/classes/gmaps.class.php I'm making a call from the functions-custom.php to ...
0
votes
1answer
35 views

Access for adding subpages but not for pages

For every website project, i make the wordpress admin custom for the client. Right now, i want that the client only has access to add subpages. I have a main navigation on the website. I want that ...
3
votes
2answers
113 views

Move admin menu at the end

I installed a plugin for my users in WPMU and I want to make it appear at the end of the admin menu .... I tried this but the menu never appears at the end: function custom_menu_order($menu_ord) { ...
2
votes
2answers
62 views

Read only capability for custom post in admin area

I'm actually building custom type to WP and need to be able to restrict post access to some user role, ie. in admin area, collaborators can see posts but can't edit them, just only open them as ...
1
vote
2answers
46 views

Remove default Wordpress styling from metaboxes on edit post pages?

Is there a way to prevent Wordpress from automatically wrapping every metabox in the postbox class? Or at least add my own outer div so I can make custom changes via css? Thanks!
3
votes
1answer
323 views

Update post counts (published, draft, unattached) in admin interface

I am working on a multi-user WordPress setup and have made it so a particular type of user can only see and interact with posts, images, pages etc that they have authored. The code to make this happen ...
0
votes
1answer
22 views

Adding Media button to only pages

I have created a media button as such: // Create a media button for pages function aisis_page_button_link(){ global $post_ID, $temp_ID, $iframe_post_id; $iframe_post_id = (int) (0 == ...
0
votes
0answers
42 views

Ajax call to minimal custom class with WP admin check

I'm creating a plugin that will submit requests via AJAX. As there will potentially be a lot of people submitting requests at once I call the file directly rather than through the WP ajax (reference). ...
1
vote
2answers
37 views

How to change the name of the “edit my profile” link in the WordPress admin backend

I am really confused at this point. I can not figure it out how to rename Edit My Profile link in the admin backend. How can that be done?
2
votes
1answer
37 views

How to display by default only published posts/pages in the admin area?

As it is, WordPress displays by default all the pages/posts in the pages/posts list in the admin area, no matter what their publishing status is. I have a lot of drafts, but usually I'm much more ...
0
votes
1answer
36 views

Globally register styles but enqueue them selectively

I am trying to get my theme registered stylesheets in plugin, the purpose is I want to get all stylesheets in my plugin and then manipulate those registered styles. stylesheets registered via ...
1
vote
4answers
2k views

Cannot access admin panel

I have been working on my site through MAMP and with a localhost. I have not uploaded my site online yet. I have worked in it for weeks accessing through the MAMP start page and then typing ...
0
votes
0answers
18 views

Change post_format with form in admin

I have a custom administrative area, where I have a list of posts displayed from different authors. I am trying to be able to change the post_format for one of the posts, based on the click of a ...
5
votes
2answers
106 views

Can a users profile be put under the dashboard menu

I was reading an article today and it covered some very valid points on user experience with WordPress. One of its points was that the profile should go under the Dashboard menu. I like this idea but ...
1
vote
1answer
56 views

echo or print_r in an admin function

I'm currently working my first plugin (to deal with my CPT) and am at the process of saving the values of a meta box. I wish to add an underscore (_) to the meta key so that it is hidden on the ...
5
votes
4answers
2k views

WordPress admin screen very slow / timing out when editing or adding a new page/custom post

I'm new to the site but appreciate any help you can give. I have a WordPress set-up which (rightly or wrongly) has hundreds of pages and thousands of another custom post type which is also based on a ...
1
vote
2answers
124 views

Adding scripts to admin page in my theme

In functions.php of my theme I have code to add page in admin area and append scripts to it. But scripts are not loaded. Bellow is code. Commented out add_action lines are the one I did check. // ...
0
votes
1answer
83 views

get user list in admin area

how can I fetch a list of registered users and show it in the admin panel. I know theres the list inside the admin panel already but I've added a few tables and I need to show them in a new tab menu ...
1
vote
2answers
164 views

Conditionally load CSS/JS/PHP in wp-admin if using a mobile device

I'm looking for a way to conditionally load different scripts if the user is accessing the admin area from a mobile device. In my case I'm looking to restrict the user to just be able to make new ...
0
votes
1answer
42 views

Load plugin scripts and styles only on plugin page

Hello wordpress users, I'm stuck with a problem while running 2 self made Wordpress plugins. I'll use the following code : define('PLUGIN_URL', plugin_dir_url( __FILE__ )); add_action( ...
0
votes
1answer
88 views

Wordpress Media Uploader custom Javascript not working

I encountered a strange problem with my JavaScript (jQuery) when trying to modify the behavior of my Media Uploader in Wordpress 3.5 This was my JQuery: $('.attachment-filters').change(function(){ ...
2
votes
0answers
51 views

Hide upload image fields for the different media upload popups

I am trying to change a few of the options in the Set Featured Image popup in the Wordpress admin. I can't seem to find anything that determines if the popup window is a Featured Image or an Add Media ...
1
vote
2answers
24 views

Make the Status, Visibility, or Date fields opened by default in the Publish box

By default, the Status, Visibility, and Date fields in the Publish metabox are closed, and you have to click Edit to show them. Is there a way to make these fields visible by default? The hidden ...
0
votes
0answers
69 views

Admin Filter by custom field

I use this for make a filter for post in my admin, on a specific custom post type, but it don't work, the query don't update and i get an empty list add_action( 'pre_get_posts', ...
0
votes
0answers
11 views

Admin Bar only Show Up on Firefox [closed]

Why my admin bar only show up on firefox browser? When I viewed on google chrome or opera, it didn't show up. Why? I already put wp_header() and wp_footer().
0
votes
1answer
42 views

What's causing this error? “Warning: Invalid argument”

I noticed today that my error logs are littered with this information. I'm not quite sure what's causing it. Has anyone seen this before? [Mon Mar 25 17:24:23 2013] [error] [client] PHP Warning: ...
0
votes
0answers
24 views

Block Contributors from admin EXCEPT allow delete posts from front-end

I have a site with some front-end post creation and editing capability for Contributors. I would like to block all non-admins from the admin, but allow them to delete posts via links created via ...

1 2 3 4 5 14