Questions about wordpress.org and its interactions with APIs, the theme and plugin repositories, Trac, Codex, project development teams, and similar topics. Do not use this tag just to mark a self-hosted installation.

learn more… | top users | synonyms

1
vote
1answer
117 views

Questions about WordPress.org theme review

I have created one theme. The theme was denied today for the following reasons: Theme Review: Themes should be reviewed using define('WP_DEBUG', true); in wp-config.php Themes should ...
1
vote
3answers
2k views

Mapping multiple URLs to same page in wordpress

I just came across this page with almost similar requirements as mine Multiple endpoints to same page i have to achieve same functionality but i also want to pass some parameters to the page where ...
10
votes
3answers
513 views

Performance of my permalink structure?

I have read the discussion on the performance of different permalinks on the wp hackers mailinglist, THIS forum and around Google. I could however not really deduce if the permalink structure I have ...
4
votes
1answer
2k views

Check if post/page has gallery?

I'd like to run some code only if a gallery (inserted with the [gallery] shortcode) has been inserted into a post/page. I did the following: gallery_shortcode($post->ID) ? $gallery = 1 : ...
1
vote
3answers
1k views

How do I add a new custom post format?

How do I add a new custom format while making a post in WordPress? The default formats are standard, aside, image, gallery... I want to add a new format of 'xyz' name. How can I do it?
1
vote
2answers
290 views

Install widget on plugin activation

Anyone know any resources to help me install my widget when my plugin is activated?
8
votes
2answers
199 views

Which of my blog and personal data is being transfered when Wordpress automatically checks for updates?

I'm generally concerned about privacy and I've heard that with each contact to the Wordpress API for update checks and similar a lot of my blogs data is being transfered. To get a better impression, ...
6
votes
5answers
4k views

Wp get all the sub pages of the parent using wp query

Here is my code $my_wp_query = new WP_Query(); $all_wp_pages = $my_wp_query->query(array('post_type' => 'page','post_parent'=>$parid,'orderby'=>'title','order'=>'ASC' )); It displays ...
5
votes
2answers
243 views

WordPress.org API - Get plugin authors favorite plugins

There have been some recent additions to the WordPress.org plugin repository. Most notably the changes to the plugin page and the author profile page which now shows an authors favorite plugins. I ...
1
vote
1answer
229 views

Post & edit a post from front end along with upload, dropdown, and other inputs

I am following this tutorial to post from front end. I am able to post the title, content, category, tags, I would like to know is it possible to add more fields like in the image below. How to ...
1
vote
4answers
119 views

WordPress.com vs WordPress.org

This question might seem a little silly but I was wondering what is the differences between WP.com and WP.org? I know the main differences like you can't edit a them file without paying for it, you ...
0
votes
1answer
192 views

wp.getUsers XML-RPC method is returning only 50 users, how can i get all the users

In my iphone app i am trying to list out all the users using the wp.getUsers XML-RPC method, but its not returning all the users, in that blog i have around 180 members , but it has returned only 50 ...
3
votes
2answers
210 views

Things to take care when moving from hosted wordpress to self-hosting

I have a hosted free wordpress blog. Now I am thinking to move that blog to self-hosting. What I already have /know/tried: 1: I have a domain name purchased from a companyA. 2: I have hosting ...
1
vote
1answer
336 views

CSS for Custom Post Types

How do I assign CSS to custom post types so it displays different from other Custom Post Types? Example: Custom Post Type 1: Row of 4 Images Custom Post Type 2: a 2 column with an Image in the ...
1
vote
2answers
674 views

Editor doesn't load properly on my self-hosted WordPress 3.3

I have a self hosted WordPress install on my small VPS running WordPress 3.3.1 powered by nginx. As of the last 3.3 update, the editor fails to load properly - I cannot see the toolbar etc. When ...
1
vote
1answer
255 views

Author Specific URL's in WordPress

In continuation of this thread Mapping multiple URLs to same page in WordPress is there any other way except redirect similar pattern URLs to same page. Our goal is to provide our guest and other ...
0
votes
1answer
284 views

Convert post name into post ID

I am trying to create a function for my functions.php file that will allow me to convert a post name into a post id. I have had a look around online and managed to find this link ...
0
votes
1answer
159 views

Custom Queries - Child Categories not showing up

What I'm Doing I have a cities category and normal categories. Right now I have them filtering by category, then when the user clicks a city it will filter by category AND city query_posts(array( ...