0
votes
1answer
32 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 ...
1
vote
1answer
190 views

Warning/Error in Admin Panel while developing theme

I am developing a theme for my website. As soon as I activated the theme, the following errors/warnings shows up on the top of the admin panel on every page. Strict Standards: call_user_func_array() ...
1
vote
2answers
187 views

Sub folder CSS that's read by Admin panel

I'm in the process of creating a theme that will have several different setup options based on input from the administrator. One of the options will be to have a Zurb or Basic type layout. I'm ...
0
votes
0answers
158 views

When using my custom theme, after any save/submit in wp-admin I get blank screen [closed]

When I activate a theme that I made, after any save or submit that refreshes the page on wp-admin I get a blank screen, If I go back and refresh the page the settings are saved. If I close the page in ...
0
votes
0answers
234 views

customizer.php redirects to login page

I am trying to access the customizer (WP 3.4) via the frontend (no wp-admin/customizer.php). I need this for a wordpress multisite installation where the individual site owners don't have access to ...
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
1answer
625 views

How to display magic field's custom write panel in wordpress theme?

So here is the thing. I'm creating a site. A user can register in my site and post articles. The thing is I don't want separate admin area to post articles. I want to integrate everything in my ...
1
vote
3answers
1k views

Can't edit style.css in subdirectory of my theme?

I want to edit a file style.css but the theme editor shows this: /* ---------- Reset Tags ----------- */ @import url("css/reset.css"); /* ---------- Reset Tags ----------- */ @import ...
0
votes
1answer
326 views

How to Disable Color Options?

This question is related to my earlier question, but I think it's specific enough to qualify as a standalone question. I am modifying an existing theme (the Twenty Ten theme that ships with ...
0
votes
1answer
3k views

Where is default wp_head() implemented?

I'm trying to customize a theme, and I see that the header.php calls "wp_head()". I can't seem to find an implementation of this in the theme, so I presume there is a default implementation that ...
1
vote
4answers
175 views

how do you create an admin interface in plugin for your theme

I'm creating a theme that would need some settings on the client side. So I need a admin interface where they can set some values. (like, source of image, title, or numbers) so in my theme, I can ...
5
votes
5answers
971 views

Form Submitting Error with get_template_part()

I have come across an interesting problem regarding the get_template_part() . I have created a theme options page (named sitewideSettings.php) normally I would include this in functions.php like so: ...