Tagged Questions
1
vote
1answer
37 views
How to build custom WP admin with custom URLs
I would like to create a custom WP admin area, that uses custom URLs to navigate thought it and have a custom generated HTML.
A member will be able to login via a custom URL, for example: ...
0
votes
0answers
18 views
How to use default WP form elements to ineract with custom db table?
I know about the use of custom_post_type, but in this case i do need to use a custom database table (fyi: it's a table that is ip-based shared with another non-WP website).
In wp-admin i like to use ...
0
votes
1answer
53 views
How to create a custom template to admin dashboard
I was trying to create a template to customize my WP admin dashboard, not only a css mod but a entirely renew to my customers.
I've successfully created a page template for a custom login page, and ...
0
votes
1answer
30 views
Customizing admin look and feel for just one particular type of user
Is it possible to change the admin look and feel for just one particular type of user or a group of users.
This is not a major requirement for what I am doing at present but a nice to have feature. ...
0
votes
0answers
27 views
force to load media-views css styles
I'm creating a modal window similar to the one media upload modal window that's part of the core WP. I'd like to use the same styles that are already there, I noticed that the styles are
loaded via ...
2
votes
2answers
227 views
How to make custom bulk actions work on the media/upload page?
I'm adapting a script I found online to add custom bulk actions to the screen with the list of posts. It has this line:
add_action('load-edit.php', 'custom_bulk_action');
I'm trying to adapt it for ...
0
votes
2answers
25 views
How to create functions that affect only a specific user
I am customizing the WP admin area and want the functions I am using to only affect a specific user. Any Ideas on how to write this?
0
votes
1answer
60 views
Edit page header on a custom plugin
I am writing a custom plugin for Wordpress but how in the world do I edit the page header? I need to add some javascript and related codes there.
0
votes
1answer
86 views
Redirect members to custom page upon logging in through WP admin
When a members logs in through WP admin, I would like to redirect them instantly to a custom URL. What will I need to change to make this possible? Respond with step-by-step details would be ideal.
1
vote
1answer
390 views
Remove “Parent” Selection When Adding/Editing Categories?
I've been trying to find a way to hide/deactivate the Parent dropdown menu from the Posts -> Categories screen.
http://example.com/wp-admin/edit-tags.php?taxonomy=category
I was able to hide the ...
0
votes
2answers
274 views
Custom Columns WordPress Admin
I am just about finished creating custom columns through the WordPress admin panel.
The custom post type I am using is called "slides". I figured out how to add the column titles and all of the ...
2
votes
2answers
399 views
Add a page that appears in the backend admin that lists files to download? WP 3.3
I am currently using WP 3.3.1.
Basically I just want a page for users who login via wp-login.php and see the backend admin panel to be able to see a page that shows a list of files they can download. ...
3
votes
3answers
864 views
Removing fields from the Media Uploader/Gallery
I've been searching high and low for an answer.
I simply want to remove the Alternate Text, Caption, Description and Link URL-fields from the uploader and gallery view.
I seem that every thing else ...
1
vote
1answer
45 views
How to add a button which saves the post then executes a function
Currently, I have a function called 'pub_notification' in my functions.php file which sends an email when the post is published, using the following code:
add_action('publish_post', ...
0
votes
2answers
173 views
Make separate text boxes for separate WordPress Custom Fields
I am trying to make usability of WordPress custom fields admin easier in my theme. I saw it in ElegantThemes' eStore theme. Only I couldn't figure out how to do it in my custom theme because I ...
1
vote
1answer
912 views
Restrict categories to a custom post type
In the WP-Admin when creating a post or a custom post type I want to restrict certain categories to a custom post type. For example, Posts will only be able to select Category A and B. And custom post ...
3
votes
3answers
1k views
How to fix a theme with page.php Default Template that accidentally deleted?
I am having a quite odd case with WP today, and after spending about an hour searching on google and forums, can't find any answers. I hope posting here might allow me some chance to get help from ...
1
vote
1answer
638 views
Automatically exclude categories from metabox based on title
I am designing a website which will be used as a school PA system. Users will be posting entries into categories named for specific dates that correspond to school assemblies. We have two assemblies a ...
0
votes
2answers
138 views
How to customize admin posts based on the user who is logged in
We are building a site that will have 10-15 photographers posting content.
There will be a common blog + each admin has their own portfolio to manage. "Portfolio galleries" and "portfolio pages" are ...
1
vote
3answers
879 views
How do I filter the excerpt metabox description in admin?
I want to change the default "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." help text below the Excerpt input area to ...
0
votes
1answer
665 views
Add a custom field when adding / editing a page / post in admin panel
I create a new theme and I the page / post is divided to:
Title
Slogan
Content
I want to add a slogan field in the admin panel, where the user adds or edits a post or page.
After I will use in ...
1
vote
1answer
1k views
Create custom fields as image uploads
How can I define a custom field that works as an image upload? Should be fairly basic but I can't seem to find the solution.
Let's say you create the post type 'book' and want to create 3 fields: ...
0
votes
2answers
1k views
Limit User Iinterface for Admin?
Is there a plugin or a way where I can restrict or limit the buttons on the admin interface for a certain user?
For example:
for the user who has a role of a writer, he/she can only post content,
...
4
votes
1answer
684 views
How to hide or remove unwanted widgets on Multisite installation?
I am using Multi-site installation. I don't want all the widgets appear under widgets.php on dashboard .So I tried to find a way to remove or hide unnecessary widgets . SO that the new sub-sites ...
25
votes
6answers
8k views
Organizing Code in your WordPress Theme's functions.php File?
The more customization I make to WordPress the more I start thinking about if I should be organizing this file or splitting it up.
More specifically, if I have a bunch of custom functions which only ...