1
vote
1answer
120 views

Auto-Populate Image After Media Upload

I am trying to auto-populate an image on a theme page using the native Wordpress media uploader, but I want the image to populate before the option is saved. With the code below, the url to the ...
3
votes
1answer
66 views

Plugin development without Theme adjustments?

I'm an ambitious wordpress beginner and learner - this is my first question at Stackexchange - in case I'm wrong here, I'm grateful for anyone pointing in a better direction. On my page ...
0
votes
1answer
81 views

Breadcrumb is not generating the correct post page url

I have created a custom posts type cities and the code for its deceleration is register_post_type('City',$args); $labels = array( 'name' => _x('Cities', 'post type general name'), ...
-1
votes
1answer
37 views

Site is setup statically - how to make it content managable?

This is probably quite a basic question, but I have my site setup statically in WordPress, all I am trying to figure out now is how to add a new section to the WordPress backend where all the content ...
0
votes
1answer
58 views

Create and style menu

I have been assigned with the task to create a menu that can be added or removed from wordpress admin. Right now the menu is hard coded into the templates. But I want to use default menu function ...
1
vote
2answers
64 views

Which themes do you use to test compatibilities with your plugin [closed]

When developing a plugin, I usually test it with the following themes before public release: TwentyTen by Automattic TwentyEleven by Automattic Coraline by Automattic Duster by Automattic Hybrid by ...
2
votes
1answer
57 views

What is the best way to provide plugin users with a way to customized the styles

I'm working on a plugin to be release to the public, it is a very simple plugin that includes a single html element in the page html. I can do many things to allow users customize its appearance: 1. ...
1
vote
1answer
170 views

How to Debug: My Plugin Interferes With My Theme

I'm learning how to write a plugin. My plugin is a google map that places markers based on the selected criteria. It works fine. The problem is that it interferes with one part of the theme I'm using. ...
1
vote
1answer
88 views

Workflow and best practice for documentation [closed]

We have been creating a bunch of templates that are very custom and change from time to time but also have a bunch of similar parts from theme to theme. I am looking to streamline the way we create ...
-1
votes
2answers
121 views

Developing Themes on WordPress, Looking for Excellent Tutorials

I am a beginner at WordPress. I know html, asp, a little PHP and I'm familiar with WordPress. I want to be an WordPress expert. So far I know WordPress involves designing themes, making plugins and ...
1
vote
1answer
147 views

Fully automated theme install and activation via a plugin

I've managed to get my "semi noob proof" site installer plugin 98% complete, but I'm having a slight issue with the theme activation. The plugin is able to copy the theme into the themes directory ...
1
vote
1answer
107 views

Theme Install using a Custom Repository

The standard WP Themes Install is available in Appearance --> Theme Install nav-tab. There is a way to add a new nav-tab and browsing into a Custom Themes Repository? Thanx
3
votes
4answers
653 views

Using a Theme inside a Plugin directory

I am building a mobile friendly plugin and put the theme directory inside the plugin directory. If it's a mobile browser, how can I redirect to the theme in the plugin directory? ...