Tagged Questions
1
vote
1answer
419 views
How to disable drafts?
Using Wordpress 3.1 is it possible to completely disable the drafts functionality or at least remove the "Save Draft" button from the post screen?
0
votes
1answer
506 views
What would causes search to return incorrect results?
Recently our site began no longer returning correct search results. When searching it returns one result that's unrelated to the inquiry. I've turned off all plugins and reverted back to a day when I ...
0
votes
1answer
353 views
Help on conditional statement to accompany wp_insert_post function please?
I'm trying to programatically insert posts from an external MySQL database as posts on my wordpress blog, I've got something that works, but there is no way of wordpress checking to see if the post ...
0
votes
3answers
175 views
Changing permalink of WordPress
I am pretty new to this and hence facing a bit of a problem. Currently I am designing a website on my localhost using WordPress.
I noticed that the permalink structure wasn't very appealing in the ...
2
votes
1answer
1k views
Custom post type permalinks breaking due to 3.1 bug fix
So I just updated a site to 3.1 that uses several custom post types.
When I had made the site I had not noticed at the time the $post_type parameter for register_post_type has to be in all lowercase ...
0
votes
2answers
97 views
I want to print a message in post “ After one month from publish date”
I need to showing message in post , but after one month from publish date.
I try to make it before ask you, but I can't
this is my code
$publish_date = $post->post_date_gmt;
...
1
vote
1answer
547 views
Get the post children count of a post
Is there a fast way to get the count (number) of post children of a certain post?
(The post has a custom post type)
I don't want to use WP_Query for this because I don't need all the extra data...
...
0
votes
1answer
581 views
Troubles about insering a POST with a SQL query, post_status
I 'm using wordpress 3.0.5
I have to use sql for create post, here is my SQL query:
$req = $bdd->prepare('INSERT INTO wp_posts ...
1
vote
1answer
966 views
plugin for wp_list_categories with posts
Is there a parameter that can be passed to wp_list_categories, to get a certain number of posts from each category? Or a plugin that does something like that? A similar question was in the Wordpress ...
0
votes
2answers
1k views
WordPress : using AJAX to get posts & Sidebar Content to an external application
Hello friends I am trying to get my wordpress posts to display in a non- wordpress application. Currently I am getting them by using the following method.
My wordPress page is something like this:
...
0
votes
1answer
1k views
simple wp_insert_post example
i've spent way too much time trying to use the wp_insert_post() function a <form> and i do not know why it is not working.
// Create post object
$my_post = array(
'post_title' => 'My ...
2
votes
1answer
980 views
WP_Query with the “offset” argument
I'm making a custom query for posts using something like:
$p = new WP_Query();
$p->query(array('offset' => 30, 'posts_per_page' => 10));
If I have 36 posts on the entire blog, ...
1
vote
1answer
537 views
Retrieving and Storing Images Linked from Other Domains on Local Server?
(Moderator's note: The original title was "Copy and Paste picture in post without linking to original")
When I copy and paste a picture from another editor window it appears nicely but it links to ...
0
votes
1answer
156 views
Specific colours for wordpress author ids
before I ask this question I would just like to say a big thank to those who helped with my other question.
On some wordpress blogs I've seen, with multiple post authors. When you view the full post ...
2
votes
1answer
198 views
Stopping People Viewing Draft Posts
At any one time I have a number of blog articles that are in draft. Generally, if I encounter something useful, I'll note it in a draft blog entry, to revisit, research and write up at a later date.
...