Im using Wordpress, Im also creating posts via XMLRPC based on an RSS feed that is added to periodically.
What I want is to read all post titles, compare those against the RSS feed, then only post to Wordpress where the post titles dont exist.
I'm trying this code:
<?php
define('WP_USE_THEMES', false);
require('../wp-load.php');
query...
Everyone (besides me) who comments on another persons blog gets marked as spam when they comment on other peoples blogs. When they comment on their own its fine.
Might be related, I've installed reCaptcha and have disabled it for logged in users yet everyone who is logged in still sees it, I don't, and incidentally my comments don't get...
I'm trying to set the post_date of a blog post to Wordpress via XMLRPC.
I'm sending the data as a string:
$pubdate = '2010-04-08 13:46:43';
'post_date'=>$pubdate,
It appears 'post_date' is correct?
I also found this post losely related to the issue: http://wordpress.org/support/topic/330597
Can anyone suggest how I would post the ...
Im trying to use this function with Wordpress:
http://www.wprecipes.com/post-on-your-wordpress-blog-using-php
When trying to add extra options im hitting problems:
Using the Wordpress Codex here: http://codex.wordpress.org/Function_Reference/wp_insert_post
Specifically trying to add:
'post_date' => [ Y-m-d H:i:s ] //The time post ...
Hi,
I am trying to get it so that when a link is clicked in my WordPress template, it will load that page content with AJAX without changing the page. It needs to load dynamically into my content area depending on which link is clicked.
I have never used AJAX before so I would love it if someone could help me out or point me in the rig...
To show recent items from a Wordpress category in a widget I'm using this code...
<ul>
<?php $recent = new WP_Query("cat=1231&showposts=5"); while($recent->have_posts()) :
$recent->the_post();?>
<li><a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a></li>
<?php endwhile; ?>
</ul>
...but how can I make this q...
How can I let a user access a WordPress protected page with a URL that will submit the password in the form below?
I want to be able to let a user get to a password protected WordPress page without needing to type the password, so when they go to the page, the password is submitted by a POST URL on page load.
This not intended to be se...
Hi guys,
I'd like to build an application that, on interval, it checks for tweets containing a particular hashtag, and creates an individual Wordpress post for each tweet that it finds.
What is the best way to do this? Are there existing plugins/tools available, or should I write my own custom plugin?
I've had a look at the plugins av...
hi, i'm trying to add categories and tags to my posts. how can i achive that if i am posting by email?
thanks guys.
...
Is there a plugin yet that allows me to post to my self-hosted WordPress install from Tweetie or another Twitter client?
I know WordPress.com can do this, I just want to do this on my own blog.
...
I have a wordpress script, wp-supercache, that I need to disable (as its cached on a nasty error), however, the error is causing the wp-admin redirect to fail, which means I can't get into the site to disable the plugin.
Any advice? I can access the database via cpanel.
...
I made a Wordpress Plugin which includes a jQuery file. Now I've got the problem, that people who use my plugin may have a different jQuery Version on their Wordpress Blogs, so what shall I do to manage that? My plugin often doesn't work with 'other' jQuery Versions.
Maybe there is anyone who is addicted with the wordpress api. Maybe th...
Well i did a wordpress installation with the newer version now avaialble at dere website..
i did my installation at a subdomain : foo.abc.com
the problem came with the permalink which do not work dere bec of the htaccess file.
Can any one suggest me how to do that, i need to have only the category/postname
Till now i am able to do f...
Is learning html, xhtml and css even necessary if i use IDE's like dreamweaver, wordpress, etc?
...
I have an ancient version of Wordpress and its WYSIWYG editor really mucks up code examples in my blogs (removing lines and whitespace when saved, etc).
I wish to upgrade and install a theme/plugin that will make it easy to display code in a pleasant way.
Any suggestions?
...
UPDATE (FIGURED OUT):
I figured this out on my own, this is not documented anywhere. The array reference passed needs to have each array item be a hash reference using either the a categoryName or categoryId key identifier. Meaning:
'categories' => [
{'categoryName' => 'CatName1'},
{'categoryName' => 'CatName2'},
],
The quest...
I want to create a (fairly big) Wordpress user index with the users categorized alphabetically, like this:
A
Amy
Adam
B
Bernard
Bianca
and so on.
I've created a custom Wordpress query which works fine for this, except for one problem: It also displays "empty" letters, letters where there aren't any users whose name begins wi...
WordPress has been installed as a blog into osCommerce. I'm trying to get the WordPress RSS feed to work. All WP core files exist, but I get all kinds of errors accessing the feed at mydomain.com/wordpress/feed/, like 404s, "the feed can't be updated because the source file is no longer available," or even raw php code in the browser fro...
Hi guys I recently uploaded a site made with wordpress.
The site url is oakabeachvolley.gr
I have set on the privacy settings of wordpress for the site to be visible by search engines. However after almost 45 days the site is invisible on google even when I'm searching using the url name and very specific keywords.
Since I have ma...
I'm looking for a solution that will enable me to use WordPress for site/content management but will export static .html files rather than dynamic database driven files.
I've used wp-super cache and it is a step in this direction, however, the speed gains were not quite what I'd like.
Any ideas?
...