Users with the ability to perform administrative tasks for a site or a network of sites.
1
vote
1answer
70 views
How to Remove the “Restore” Link in Quick Edit?
I want to know is there any hook to remove the Restore link in the edit page - trash page?
/wp-admin/edit.php?post_status=trash
I know I can hide it with a css/jquery trick, but I prefer to use a ...
2
votes
1answer
145 views
With WP 3.4 customizer, while using postMessage & working within your JS for one option, can you retrieve current value for another option?
I'm currently working with this awesome article by Otto: http://ottopress.com/2012/how-to-leverage-the-theme-customizer-in-your-own-themes/
For my question, I have two separately registered settings, ...
1
vote
1answer
203 views
How to add HTML / Form to an Admin Bar Menu
I'd like to add a custom form to the admin bar in Wordpress. is there a way to accomplish this? So far all of the documentation seems to only allow the addition of simple text links.
0
votes
2answers
88 views
[Multisite]How can I update custom blog option?
I wanted to update custom blog option created thru Settings Api using the function update_blog_option. I created this code.
$country_base = get_blog_option($blog_id, 'mytheme_options');//retrieve ...
2
votes
3answers
346 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?
2
votes
1answer
52 views
Multiple users editting widgets
I have just completed a website using WordPress as a CMS, the site has 6 people administering the content and in the couple of days before launch all 6 were updating the content.
We found that if ...
0
votes
2answers
80 views
how to call jQuery in admin as well as in homepage
I have this jquery code inside my wordpress admin page that checks if the input value is empty.
$j(function(){
$j('form').submit(function(){
var link = $j('#input').val();
if(link == ''){
...
1
vote
1answer
221 views
How to get the site administrator/s by blog id
I wanted to display the site administrator/s not super administrator by blog id. Which outputs the site admin id and avatar. How to accomplish this?
0
votes
1answer
206 views
Wordpress - Selectbox in admin panel function linking to CSS
So what I want to do is link the selectbox to my CSS.
Like if i click an item on the list that the background of my header will change, the header's color is in the CSS.
The selectbox isn't in the ...
1
vote
2answers
238 views
is_admin() returns true when using admin-ajax.php from front end script
Had a situation today where I was using admin-ajax.php from a front end script. As I understand it this the wp way to make ajax calls (registering my function with the wp_ajax_nopriv_myfunction hook)
...
4
votes
1answer
302 views
Restrict Admin Capabilities in MultiSite
update_core
update_plugins
update_themes
install_plugins
install_themes
delete_themes
edit_plugins
edit_themes
Hi, I want to restrict those capabilities to user_id = ...
0
votes
2answers
166 views
Proper way to create an administration page without adding it to the menu
From what I've seen around the code, you can do this by hooking a function on admin_init, do you stuff and then die().
Is there a better way that follows "WP best practices" I'm missing here?
The ...
0
votes
1answer
60 views
retain querystring values when savincustom options in admin
Quick question, I have a custom options page which posts to options.php, however I have a few sections to my options page where i change the post url like so: <form ...
1
vote
1answer
90 views
which action to hook to in order to perform post-publish action
I have some functionality I've written in order to post the title and link for the post to twitter whenever a post is published.
I'm wondering which wp function to hook this to? save_post has no real ...
0
votes
2answers
1k views
How do I fix this error: Warning: invalid argument supplied for foreach()?
I recently moved a wordpress install from my local instance to a dev server. For the move, I installed a clean version of wordpress 3.4, moved exact duplicates of the file structre, and used the ...
0
votes
2answers
197 views
Disable (or limit) queries when certain content (or data) is not needed (or showed)
Currently I am making a custom design for a site. The problem I'm seeing in Wordpress is about almost all data pulled out from the database.
While in certain pages - like front-page.php - it only ...
0
votes
2answers
70 views
Hide admin toolbar based on a query string
As far as I know the showing and hiding of the admin toolbar on the front-end is a global setting, which applies to any page containing wp_footer().
I want to have more specific control over the ...
1
vote
1answer
198 views
Making Media Library “Alternative Text” Field Required
I'm looking to make the "Alternative Text" field required in the Media Library, just like the "Title" field above it.
Screenshot:
1
vote
1answer
28 views
plugin to post from admin to flickr [closed]
I'm looking for a plgin which allows the admins to post to flickr directly from the admin panel when posting.
I saw this and thought it would work but seems to only 'get' images not 'post' them
...
0
votes
1answer
56 views
How can I merge two authors?
I noticed on one of my WordPress installs I have two admin authors with the same email address. Both of them have posts attributed to them. They are both for the same person, so I'd like to combine ...
0
votes
1answer
113 views
Top toolbar is not showing in wordpress admin panel
Today I came over a very interesting and confusing problem. I developed a wordpress website in my localhost and it run perfectly. But when I moved that site in my server I saw a strange thing. When I ...
-1
votes
1answer
99 views
Displaying the custom taxonomies side by side on the admin dashboard
I got 5 top level cats and for each of these top level cats, I have directly corresponding 5 non-hierarchal custom taxonomies.
By default, WordpPress UI display these CT's one after the other. Right ...
0
votes
2answers
50 views
How to reset a custom theme
After making a lot of little changes to the current custom theme [zeeBizzCard] I'm using, I want to reset it back to it's original style. Being new to WP, I didn't make a backup of the default theme ...
1
vote
1answer
74 views
Hide Pages on Edit Pages based on Capability (edit_others_pages)?
Currently, WordPress does a great job displaying pages on the Edit Pages admin area for users with the capability edit_others_pages. However, if a user has edit_others_pages and has not yet authored ...
2
votes
1answer
429 views
How to edit/delete single row items in a table on my own menu page
I have successfully created a wp-LINKS-list-table that displays the output of WP's core "Links" table in the WP Dashboard, and I have it displaying on a menu page I created. Step 1 accomplished!
...
0
votes
4answers
464 views
Change wording of admin menu item?
I'm using the plugin Jigoshop and I'd like to change the wording of the admin menu to something other than "Products":
How can I do this? What files need editing?
0
votes
1answer
108 views
Wp-Admin FTPS Connection Error unlike Filezilla
My wordpress website is just moved FTP to FTPS protocol.
When I tried to make a connection with FileZilla, the connection is successful. There is nothing wrong with my FTPS connection.
Status: ...
0
votes
2answers
172 views
using the loop in custom meta is messing up 'add new' post type
When I use the following code in a (wpalchemy) custom meta box, everything works fine. That is until I pressed 'add new'. At this point, the title, slug, featured image, etc.. are being ...
2
votes
3answers
458 views
Set Featured Image programmatically (in admin) with JavaScript?
I'm trying to set the post thumbnail (featured image) with javascript from an existing image in the media gallery. I would consider a php-based option too I suppose (one that would require clicking ...
1
vote
0answers
76 views
How can I make the user names of commentors clickable links to the user's profile from the admin comment screen?
I've set up my wordpress blog to only allow logged in users to leave comments, but I need a way for the administrator to be able to go to a user's profile from the comment moderation screen. I don't ...
1
vote
1answer
62 views
Modifying the built-in behavior of ajax tag type-ahead functionality of WordPress
Currently, it takes 3 characters to be entered into the tags, before WordPress can start suggesting matching tags.
Where do I make it so it instantly starts those suggestions?
I've got a 100's of ...
0
votes
1answer
29 views
avoiding the display of certain categories to certain user roles at content entry time
How can I eliminate the "featured" category (and its sub tree ) in the admin panel when the user role is not editors or admins?
0
votes
2answers
46 views
creating a plug in that would tap into save/update action of posts
What's a good plug-in that taps into the update post or save post action that allows admins to enforce rules such as if a user selects a category with the ID 5 then he also has to select at least one ...
0
votes
2answers
118 views
htaccess and htpasswd
im trying to lock my admin panel from my users with adding htpsswrd file to wp-admin folder. but also i want my users can edit their profiles. so i create this file (htaccess)
AuthName "Username and ...
0
votes
1answer
308 views
Blocking Administrative Access to Authors and Subcribers?
I would like to turn off admin panel for authors and subscribers.
Is there any secure way to keep them away from admin panel?
0
votes
2answers
949 views
WordPress Admin very slow
Hi my wordpress admin is acting really slow, is there some diagnostic plugin I can use (like Debug queries on the front end) to see which plugin is slowing down the dashboard?
0
votes
2answers
63 views
How to cancel redirection to admin side
My friend asked me to activate a site that someone else did it. The problem is that when I try to run it, and I go to mysite.com I arrive to mysite.com/wp-login.php?redirect_to=/
Where and how can I ...
0
votes
1answer
211 views
Get categories names as an array to use it in theme settings
I am building a theme and for the Theme Settings Page I followed this tutorial:
http://wp.tutsplus.com/tutorials/using-the-settings-api-part-1-create-a-theme-options-page/
What I want now is to have ...
5
votes
2answers
102 views
Prevent widgets removal
I'm building a site with a lot of widgets. They have been highly customized.
Several admins/editors will have to edit these widgets when the site is live.
Right now I'm scared to see a widget (and ...
3
votes
1answer
530 views
Change admin language based on user (in single-site)
I'm trying to make a small plugin to install in some sites of a german client.
I can make my way around WordPress in german, but would be easier if it was in english.
There's a plugin that manages ...
1
vote
2answers
922 views
How to Change the Categories Order in the Admin Dashboard?
The order of categories on dashboard is alphabetical. Can I change it to custom order?
1
vote
1answer
58 views
Is there a way to remove or hide individual pages on the Edit Pages screen?
I want to create a handful of pages that I do not want the client to have access to through the edit pages admin screen.
I do want the pages to have all the normal functionality of pages in other ...
4
votes
2answers
145 views
Allow admin login at /admin
I am interested in:
how can we change the default login url /wp-admin to /login
how can we add another url for login so that both /wp-admin and /login would work
I tried to use a custom filter and ...
0
votes
2answers
533 views
How can I include JavaScript that use jQuery on admin side
I try this:
add_action('admin_print_scripts', 'custom_admin_scripts' );
function custom_admin_scripts() {
echo '<script type="text/javascript" src="' . get_bloginfo('stylesheet_directory') ...
1
vote
2answers
212 views
Permalinks Question: Adding a prefix ONLY in front of the posts
I want all my posts to have /ARTICLES/%post-name% structure.
But as soon as I modify the custom structure to that, for a reason that beats me, wordpress adds the articles prefix across the board.
...
1
vote
3answers
136 views
Set of plugins to control the Admin UI
What plugin you would recommend that would give powerful Admin UI options such as change Add Posts menu item to Add Articles, remove Add Media option for certain user roles and not allowing certain ...
0
votes
1answer
188 views
Remove “minor-publishing” div from Publish admin metabox
I want to remove the #minor-publishing div from the Publish admin metabox. I came across How to HIDE everything in PUBLISH metabox except Move to Trash & PUBLISH button and ...
0
votes
1answer
427 views
plugin to upload to youtube via wordpress
before you say it, i know that in most situations it's easier to do this the other way around (i.e. upload via yt site then embed) but i need a plugin to upload/manage yt videos via the wordpress ...
2
votes
1answer
201 views
How to change redirect after moving a page to trash?
How could I change the redirect location after a user trashes a page?
Right now they go to all pages here:....wp-admin/edit.php?post_type=page
I want them to go ...
3
votes
2answers
189 views
admin page redirect
Is it possible to redirect users to an admin page if they access another admin page?
For example if they a user ever hits "all pages" /wp-admin/edit.php?post_type=page
they would get redirected to ...