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.
0
votes
1answer
132 views
Replace & with &
I have a plugin that unfortunately I have no control over, the problem I am experiencing is that it doesn't use & in place of & and so breaks the sites validation.
Is there a function I ...
0
votes
2answers
110 views
wordpress: cant get category id when SEO URL is turned on
<?php
/*
Plugin Name: Members
*/
function myFilter2($query)
{
if ($query->is_category)
{
$currently_listing_categories = ...
1
vote
1answer
34 views
How is the WordPress.org plugin download history calculated?
I'm interested to know how the download history of plugins is calculated on WordPress.org.
I'm noticing that one of my plugins is displaying a small percentage of users using a version which I ...
0
votes
1answer
113 views
metaWeblog.getRecentPosts is returning nothing in my iphone app
metaWeblog.getRecentPosts is returning nothing in my iphone app, follwong is my objective c code to call that method,xml-rpc wordpress methods like wp.getUsers are working fine, but the methods ...
1
vote
2answers
325 views
Adding set of custom fields to Wordpress Post in Dashboard
I am working on a WordPress site and while creating a new posts we have certain number of custom attributes which are always part of the post, as of now we need to manually add those all custom fields ...
1
vote
1answer
34 views
wordpress.org codebase
Is the codebase that runs wordpress.org publicly available? Specifically, I'm interested in the part that parses the plugins SVN repository to determine the current and past versions of plugins.
I ...
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 ...
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?
3
votes
1answer
109 views
Using preg_replace to clean widget output HTML
I am working on a wordpress site that uses a plugin / sidebar widget. The issue I am experiencing is that the widget generates HTML that is not valid, an example of this is below...
<p>
...
2
votes
2answers
688 views
Buddypress - Send New User Activation Link to Admin
How do I send the new user activation link to my own email address instead of the user? Is there a simple function I can use to switch things out?
function ...
0
votes
1answer
147 views
problem of path with xml file (wordpress)
i'd like to import a flash audio player in my wordpress theme, the import of the file works fine because it shows up on screen, responds to the click on play/pause, but the sound does not start.
edit ...
0
votes
1answer
1k views
Retrieving custom fields with $wpdb->get_results
I'm trying to use $wpdb->get_results to retrieve an array of all posts including custom fields. I can retrieve the meta_key and meta_value columns like this:
[meta_key] => state [meta_value] ...
0
votes
2answers
197 views
Insert taxonomy slug into loop class
I am a loss here since I have looked at dozens of tutorials and posts all over the internet on how to get the slug for a taxonomy and nothing I try seems to work. The taxonomy shows up fine when I ...
1
vote
3answers
114 views
WP.org API: Accessing plugin downloads “Today” value?
I'm developing a plugin to display stats for downloads and various other information that developers might want to display on their sites about what they have developed.
I've found documentation on ...
1
vote
1answer
86 views
Disabling archives, search results, comments, etc?
I am working on a site that has only text articles, and I am not making use of comments, archives, trackbacks and other features.
How can I make so these pages show a 404 not found error? I am not ...
0
votes
1answer
157 views
SQL query add only posts with custom field to array
I have this SQL query which is building an array of wordpress posts...
$query = "select $wpdb->posts.* from $wpdb->posts,$wpdb->terms,$wpdb->term_taxonomy,$wpdb->term_relationships ...
0
votes
2answers
476 views
WordPress Carousel Hover Image
I a using an image carousel to display some pictures on my website. The carousel I am using is called: Jcarousellite (http://www.gmarwaha.com/jquery/jcarousellite/). I have the carousel setup, styled, ...
0
votes
2answers
76 views
REQUIRED: Could not find wp_link_pages. See: wp_link_pages by Theme Checker
I have run my theme through WordPress theme checker to see if it can be submitted to WordPress.org. I encountered this error:
REQUIRED: Could not find wp_link_pages. See: wp_link_pages
But this ...
0
votes
1answer
147 views
Display Images with More Fields yes / no
I am creating a site and installed the More Fields plugin option to create custom fields in the posts.
I'll have an area for downloads, which will provide Word and Excel files to download.
If I ...
1
vote
2answers
672 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 ...
0
votes
2answers
110 views
User access control in sidebar archive and categorires
Could someone please help me solve my problem which is: I want content restrictions based on user roles and a sidebar category based on user roles. I have three type of user roles: Beginner, ...
1
vote
3answers
299 views
How can I eliminate the inline styles included by default with the Genesis framewrok?
I have created a child theme in the Genesis framework. I have created all of my style rules, however, in the markup, Genesis adds a few inline rules by default that I would like to eliminate.
The ...
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 ...
0
votes
1answer
323 views
where to modify get_comment_author_link()?
Whenever a user presses on a comments author it redirects the user to the site which was enetered by user. I just want to add the target="_blank" element. where I can modify this?
In file i see only ...
11
votes
4answers
541 views
What is the Plural of WordPress?
I mean, for what I remember of my english classes it should be WordPress', or not?
Would this be a Meta Question?
Or a English Language & Usage one?
[update]
What I ended up writing (in an ...
0
votes
2answers
1k views
How can I make a website with dynamic features with wordpress?
As I am a novice in web development field, I wanted to clarify some questions running in my head.
I want to make a multilingual website with dynamic features. Dynamic features can be like anything ...
0
votes
1answer
208 views
Figuring out how to use wp_update_post with ajax on frontend
I've been working hard trying to implement a frontend post editor "sidebar" on each post when I'm logged in.
You can see what is going on here with a test post: ...
2
votes
1answer
187 views
Can I change ownership of my plugin?
By adding a new committer and removing the original committer can I effectively change ownership of plugin? I would like to transfer a plugin to a new wordpress.org profile. I am the author.
-1
votes
1answer
63 views
Using JSON PHP Script inside loop gets fatal error
The bespoke JSON/PHP Code:
<?php
$url = ("<<URL HERE>>");
function new_file_get_contents($url) {
$ch = curl_init();
$timeout = 0; // set to zero for no ...
2
votes
1answer
268 views
Previous & Next on Index Page broken
So the Next/Previuos on my index page is broken. It goes to page 2 but doesn't refresh the posts. It will work on my categories and it will work on my posts but it just won't work on the from page. ...
0
votes
1answer
93 views
Custom attributes to javascript tags
My site uses cloudflare but I really want to enable rocket loader, but if I put it on automatic mode, it messes up my whole site...
So I googled and found This answer which has helped in terms of ...
1
vote
0answers
62 views
Wordpress custom theme shows no output
I'm trying to create a basic wordpress theme. As far as I know the basic files I need are the style.css, header.php, index.php, footer.php, functions.php. Then it should show a blank site with some ...
1
vote
0answers
94 views
Publish HTML using XML-RPC
I have looked at a number of apps which can publish blog posts to Wordpress from mobile phone be it Android, Blackberry, iPhone or Windows Phone.
All of them publish the content entered by the user ...
0
votes
1answer
213 views
Get post featured image id with $wpdb
I'm not a sql expert, but with some help and copying from queries I've found on the web I got this working one that gets the 20 closest places (custom post type) to a specific latitude and longitude ...
1
vote
2answers
525 views
Creating external apps Wordpress / How they work
I was wondering how does external app works for wordpress.com or wordpress.org.
Directly connecting to the wordpress database seems a bad idea to me.
Questions
How can I create an app or get / ...
7
votes
5answers
248 views
Can a developer adopt a plugin marked as “not updated in over 2 years”?
I have come across a few WordPress plugins on http://wordpress.org/extend/plugins/ with this warning:
This plugin hasn't been updated in over 2 years. It may no longer be
maintained or supported ...
1
vote
1answer
56 views
Creating Menu with Wordpress
I am not very familiar with WordPress so my knowledge with this is limited. I am working on a travel website where I need to show navigation menu and I am not sure how I can achieve the desired ...
0
votes
2answers
78 views
How to Catch Last Widget box From Same Widget Area?
is there any Way to Catch Last widget box or div from same widget area?? i mean i have 4 widgets in footer widget area but due to design issue my 3rd widget box style+width is different.so i want to ...
4
votes
1answer
1k views
How reduce wordpress login session timeout time?
I want to logout user autometically when user is idle for more than 10 minutes.That mean suppose user is logged in to a site and user didn't browse any pages for more than 10 mins.when he browse any ...
-1
votes
1answer
99 views
How to disable buddypress top mini adminbar
I am having trouble with adminbar in my site. I have buddypress installed on my site. i have disabled wordpress default admin bar using few lines of code. But it still showing i am pretty sure its ...
2
votes
2answers
98 views
Custom Author Fields + Existing Taxonomy - Integrating the Two Dynamically?
I am trying to integrate both the values from an existing custom taxonomy and custom author profile fields. I would like the values to be used as the options from which an author can select when ...
0
votes
1answer
27 views
delete category name in the pages
I'm looking for a way so that I can delete category's name in the pages.
I tried to find something for category in index.php but I couldn't find anything.
Please help me to solve this problem.
...
0
votes
1answer
37 views
Wordpress do not display thumbnails correctly
For all the pics I upload to Wordpress I get such a link to the pic:
...
0
votes
1answer
149 views
WP Wrap Featured Image in a Link
I want to wrap a link around a featured image (only if the custom meta box has been filled in), the link will come from a custom meta box.
Here's my image code: the_post_thumbnail('screenshot');
...
5
votes
2answers
242 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
62 views
Display list of uploaded images, filtered by user under a specific user group
I am planning to create a "Photography" page in my wordpress site. In that page, there will be a list of the photographers (maybe create a user group called 'photographers') and display the images ...
-1
votes
2answers
61 views
Custom Wordpress Does Not Display Anything But Background in IE
I have a custom, well kinda custom wordpress in only one page of my site, the background only displays in Internet explorer, no body or content just background though in firefox it's fine as with ...
1
vote
1answer
52 views
website is still in localhost
I upload my website to the server and I changed the website url and home from localhost to mysite url. But it still is in localhost if I turned off wampserver it won't show the website. Just show me ...
0
votes
1answer
17 views
WordPress Integration Options
I have a website on virtual private server and a WordPress blog hosted by WordPress. What option other than installing WordPress on my server can most tightly integrate my site and blog?
1
vote
1answer
72 views
Can WordPress Plugin Directory Cache Delay the Upload of Images?
I've updated my plugin and I can see the updated text on the plugin page but I don't see any of the screenshots or header image. Is it possible that the cache will move the image files over later? Or ...


