wordpress

Get the Title of all posts

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...

All comments get marked as spam regardless (Wordpress MU)

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...

Wordpress - Set post_date

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 ...

Extend a function to support more items

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 ...

Using AJAX to load WordPress pages

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...

Query to show images with recent posts in Wordpress sidebar/widget

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...

Submit WordPress form password programmatically

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...

Creating a new wordpress post from twitter tweets

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...

wordpress post by email and also cats and tags

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. ...

Posting to self-hosted WordPress from Tweetie (or other Twitter Clients)

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. ...

WordPress deactivate a plugin via database?

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. ...

jQuery version conflicts - how to manage?

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...

WordPress sub domain htacess problem

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...

What tools should i use for web development?

Is learning html, xhtml and css even necessary if i use IDE's like dreamweaver, wordpress, etc? ...

Good Wordpress Theme/plugin for showing off code examples and scripts

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? ...

Perl WordPress::XMLRPC categories not being set.

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...

PHP/SQL/Wordpress: Group a user list by alphabet

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...

Exclude a URL from rewrite in .htaccess with "last" flag

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...

Cannot see my wordpress website on google search

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...

WordPress to Static .html solution

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? ...