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
48 views
Is it possible to get rid of admin new updates notifications?
I am doing projects for clients and sometimes an update messes a lot. So, can we leave error messages and get rid of new updates notifications in wordpress admin side?
Thanks!
0
votes
1answer
54 views
Creating an RSS feed with all of the prior month's posts
How can I create an RSS feed that will display all posts from the prior month. So on any day in December, the feed will show all posts from November and so on.
Thanks.
0
votes
1answer
63 views
getPost() method and Pagination
i am creating a related post article feature for my wordpress enabled site.being new to php and wordpress facing some issue.
though i can user wordpress build in feature to show related post of author ...
0
votes
1answer
112 views
problem redirecting users to page on login
I'm trying to redirect certain users to a part of my site but I cannot seem to make it work... can you take a look at this and tell me what I'm doing wrong?
if ( ! function_exists( ...
0
votes
1answer
121 views
how to have custom post template including custom write panels for the users to post
I would like to have a separate custom page where the logged in users can post their content.
Add post title,
add content,
add check boxes,
image/file uploads,
Is there any way to do so?
0
votes
3answers
1k views
Create post from form with image
I found this wonderdul script that @Bainternet here at Wordpress Answers created, that makes it possible to attach images into posts from a html form..
I tried to combine in into my "html form to ...
0
votes
1answer
32 views
What is the general cut-off date for reviewed themes in the WordPress.org repository?
I know that the theme review team has been active for about one year now. Thanks to their hard work and diligence, the themes in the repo are much better now than ever before. However, I have noticed ...
0
votes
1answer
129 views
How to disable “Audio Player” to show up on the main page
I have a post with audio player with autostart enabled, and i decided to put it in the beginning of the post, before putting "read more" excerpt feature. So the problem is, that audio player plays ...
0
votes
1answer
419 views
I want to create a Visual Recipe site on WordPress, any suggestions or tips on how i can do it?
I would like to create a visual recipe site, which lists how to make a dish in step by step through pictures.. Is it possible to create a custom page template where i can the following fields.
...
0
votes
3answers
607 views
What happened to WP No Category Base?
What happened to the plugin in Wordpress plugin repository?
The link doesn't work:
http://wordpress.org/extend/plugins/wp-no-category-base/
and search for this plugin doesn't list it.
Yes, I know I ...
0
votes
1answer
321 views
How can I make the menu bar in this page - http://www.randomthoughts.ie/shawati - more transparent?
As you can see from the site, the bar where the various 'projects', 'magazines' and 'contact' links are is already slightly transparent. I'm trying to make it even more transparent (or totally ...
0
votes
2answers
78 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 ...
-1
votes
1answer
189 views
PHP $_session is not work in wordpress
why PHP $_session is not working in wordpress my php code is
session_start();
session_register('lang_opt');
$_SESSION['lang_opt'] = $_POST['lang_opt'];
$mylang = $_SESSION['lang_opt'];
echo ...
-1
votes
2answers
3k views
Blog has an infinite redirect loop
Why is http://compassionpit.com/blog/ going through an infinite redirect loop? Here's my nginx conf file. The site is run by a nodejs server on port 8000 and Apache serves up the blog (wordpress) and ...
-1
votes
1answer
65 views
How change the header color?
I want to change the balck color in the header and also the font color in the same place?
Update: I am using the Twenty Ten 1.3 theme
-1
votes
1answer
537 views
Changing color of specific tab of top menu !
I am messed up with a problem and still i am unable to find it's solution. I am trying to change color of only 1 tab in whole navigation menu !
I mean if my navigation bar include 5 tabs and i want ...
-1
votes
1answer
121 views
which table updated after logout?
I am working on wordpress in which on clicking logout button user will be logout using
<?php wp_logout(); ?> function
when I followed some guidelines on wordpress site I came to know that it ...
-1
votes
1answer
64 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 ...
-1
votes
2answers
62 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
votes
1answer
69 views
How to create a cumulative posts and members count
I need to show my users cumulative posts and members registered count by date.
It has to be displayed in an array format like this
for posts
array(array(2011,08,02), 500)
array(array(2011,08,03), ...
-2
votes
3answers
155 views
Plugin: Custom menu item problem
I'm using the following snippet to add a menu item:
<?php
add_menu_page(
'Foo Server',
'Foo Server',
'manage_options',
'foo-server',
array('Class', 'method')
);
?>
Fine, ...
-3
votes
2answers
386 views
How to display both home.php and index.php
Hey guys i recently created a theme. I want to show home.php when a visitor visit home page but all my blog posts are listed in index.php file. Can someone suggest me how to display index.php
i tried ...