<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wordpress Support</title>
	<atom:link href="http://wordpress.exaspring.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpress.exaspring.com</link>
	<description>Wordpress Exprts at Work</description>
	<lastBuildDate>Fri, 12 Mar 2010 06:51:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introduction to Wordpress Database: wp_postmeta</title>
		<link>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_postmeta/</link>
		<comments>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_postmeta/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 06:48:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[add_post_meta()]]></category>
		<category><![CDATA[custom fields]]></category>
		<category><![CDATA[wordpress database]]></category>
		<category><![CDATA[wp_postmeta]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3188</guid>
		<description><![CDATA[Introduction to Wordpress Database: wp_postmeta
Just like wp_options and wp_usermeta, wp_postmeta is used to save post related data. These data are generally called custom fields.
One can add custom field from post editor, as shown below:

For example, I have the inserted version in each post using the custom fields.
The structure of this table is as follows:



Field
Type
Null
Key
Default
Extra


meta_id
bigint(20) unsigned

PRI
NULL
auto_increment


post_id
bigint(20) unsigned

IND
0
FK-&#62;wp_posts.ID


meta_key
varchar(255)
YES
IND
NULL



meta_value
longtext
YES

NULL




Indexes



Keyname
Type
Cardinality
Field


PRIMARY
PRIMARY
13
meta_ID


post_id
INDEX
15
post_id


meta_key
INDEX
7
meta_key



In the table, the value is saved with meta_key and post id.
These fields can be handled using various functions like add_post_meta(),update_post_meta(),get_post_custom() etc. Please check this URL for more details:
http://codex.wordpress.org/Custom_Fields


Related posts:Introduction to Wordpress Database: wp_usermeta
Introduction to ...


Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_usermeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_usermeta'>Introduction to Wordpress Database: wp_usermeta</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_users/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_users'>Introduction to Wordpress Database: wp_users</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/how-to-set-expiration-date-for-a-post-using-custom-fields/' rel='bookmark' title='Permanent Link: How to set expiration date for a post using custom fields?'>How to set expiration date for a post using custom fields?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction to Wordpress Database: wp_postmeta</strong></p>
<p>Just like wp_options and wp_usermeta, wp_postmeta is used to save post related data. These data are generally called custom fields.</p>
<p>One can add custom field from post editor, as shown below:</p>
<p><a href="http://wordpress.exaspring.com/wp-content/uploads/2010/03/wp-example.jpg"><img class="alignnone size-medium wp-image-3189" title="wp-example" src="http://wordpress.exaspring.com/wp-content/uploads/2010/03/wp-example-300x100.jpg" alt="" /></a></p>
<p>For example, I have the inserted version in each post using the custom fields.</p>
<p>The structure of this table is as follows:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="106" valign="top">Field</td>
<td width="106" valign="top">Type</td>
<td width="106" valign="top">Null</td>
<td width="106" valign="top">Key</td>
<td width="106" valign="top">Default</td>
<td width="106" valign="top">Extra</td>
</tr>
<tr>
<td width="106" valign="top">meta_id</td>
<td width="106" valign="top">bigint(20) unsigned</td>
<td width="106" valign="top"></td>
<td width="106" valign="top">PRI</td>
<td width="106" valign="top">NULL</td>
<td width="106" valign="top">auto_increment</td>
</tr>
<tr>
<td width="106" valign="top">post_id</td>
<td width="106" valign="top">bigint(20) unsigned</td>
<td width="106" valign="top"></td>
<td width="106" valign="top">IND</td>
<td width="106" valign="top">0</td>
<td width="106" valign="top">FK-&gt;wp_posts.ID</td>
</tr>
<tr>
<td width="106" valign="top">meta_key</td>
<td width="106" valign="top">varchar(255)</td>
<td width="106" valign="top">YES</td>
<td width="106" valign="top">IND</td>
<td width="106" valign="top">NULL</td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">meta_value</td>
<td width="106" valign="top">longtext</td>
<td width="106" valign="top">YES</td>
<td width="106" valign="top"></td>
<td width="106" valign="top">NULL</td>
<td width="106" valign="top"></td>
</tr>
</tbody>
</table>
<p><strong>Indexes</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="160" valign="top">Keyname</td>
<td width="160" valign="top">Type</td>
<td width="160" valign="top">Cardinality</td>
<td width="160" valign="top">Field</td>
</tr>
<tr>
<td width="160" valign="top">PRIMARY</td>
<td width="160" valign="top">PRIMARY</td>
<td width="160" valign="top">13</td>
<td width="160" valign="top">meta_ID</td>
</tr>
<tr>
<td width="160" valign="top">post_id</td>
<td width="160" valign="top">INDEX</td>
<td width="160" valign="top">15</td>
<td width="160" valign="top">post_id</td>
</tr>
<tr>
<td width="160" valign="top">meta_key</td>
<td width="160" valign="top">INDEX</td>
<td width="160" valign="top">7</td>
<td width="160" valign="top">meta_key</td>
</tr>
</tbody>
</table>
<p>In the table, the value is saved with meta_key and post id.</p>
<p>These fields can be handled using various functions like <tt><a title="Function Reference/add post meta" href="http://codex.wordpress.org/Function_Reference/add_post_meta">add_post_meta()</a>,<a title="Function Reference/update post meta" href="http://codex.wordpress.org/Function_Reference/update_post_meta">update_post_meta()</a>,<a title="Function Reference/get post custom" href="http://codex.wordpress.org/Function_Reference/get_post_custom">get_post_custom()</a> etc. Please check this URL for more details:</tt></p>
<p><a href="http://codex.wordpress.org/Custom_Fields">http://codex.wordpress.org/Custom_Fields</a></p>


<p>Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_usermeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_usermeta'>Introduction to Wordpress Database: wp_usermeta</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_users/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_users'>Introduction to Wordpress Database: wp_users</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/how-to-set-expiration-date-for-a-post-using-custom-fields/' rel='bookmark' title='Permanent Link: How to set expiration date for a post using custom fields?'>How to set expiration date for a post using custom fields?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_postmeta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Wordpress Database: wp_users</title>
		<link>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_users/</link>
		<comments>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_users/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:03:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[user details]]></category>
		<category><![CDATA[wordpress database]]></category>
		<category><![CDATA[wp_usermera]]></category>
		<category><![CDATA[wp_users]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3179</guid>
		<description><![CDATA[Introduction to Wordpress Database: wp_users
Current Version : 2.9.2
Wordpress saves the user details in wp_users table. All the major details like user id, user_login, email address, password (In MD5) are saved in this table.
Below mentioned is the structure of this table:



Field
Type
Null
Key
Default
Extra


ID
bigint(20)   unsigned

PRI
NULL
auto_increment


user_login
varchar(60)
IND





user_pass
varchar(64)






user_nicename
varchar(50)

IND




user_email
varchar(100)






user_url
varchar(100)






user_registered
datetime


0000-00-00   00:00:00



user_activation_key
varchar(60)






user_status
int(11)


0



display_name
varchar(250)







Indexes



Keyname
Type
Cardinality
Field


PRIMARY
PRIMARY
1
ID


user_login_key
INDEX
None
user_login


user_nicename
INDEX
None
user_nicename



here, password is  MD5 encrypted.
We manually are not supposed to make any entry in this table. However, you can use this function in your template or plugin:
wp_insert_user()
This function requires an array of data to be inserted for the user. Please check more details here wp_insert_user().


Related ...


Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_usermeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_usermeta'>Introduction to Wordpress Database: wp_usermeta</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_postmeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_postmeta'>Introduction to Wordpress Database: wp_postmeta</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Introduction to Wordpress Database: wp_users</h2>
<p><strong>Current Version : 2.9.2</strong></p>
<p>Wordpress saves the user details in wp_users table. All the major details like user id, user_login, email address, password (In MD5) are saved in this table.</p>
<p>Below mentioned is the structure of this table:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="106" valign="top">Field</td>
<td width="106" valign="top">Type</td>
<td width="106" valign="top">Null</td>
<td width="106" valign="top">Key</td>
<td width="106" valign="top">Default</td>
<td width="106" valign="top">Extra</td>
</tr>
<tr>
<td width="106" valign="top">ID</td>
<td width="106" valign="top">bigint(20)   unsigned</td>
<td width="106" valign="top"></td>
<td width="106" valign="top">PRI</td>
<td width="106" valign="top">NULL</td>
<td width="106" valign="top">auto_increment</td>
</tr>
<tr>
<td width="106" valign="top">user_login</td>
<td width="106" valign="top">varchar(60)</td>
<td width="106" valign="top">IND</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">user_pass</td>
<td width="106" valign="top">varchar(64)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">user_nicename</td>
<td width="106" valign="top">varchar(50)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top">IND</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">user_email</td>
<td width="106" valign="top">varchar(100)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">user_url</td>
<td width="106" valign="top">varchar(100)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">user_registered</td>
<td width="106" valign="top">datetime</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top">0000-00-00   00:00:00</td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">user_activation_key</td>
<td width="106" valign="top">varchar(60)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">user_status</td>
<td width="106" valign="top">int(11)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top">0</td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">display_name</td>
<td width="106" valign="top">varchar(250)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
</tr>
</tbody>
</table>
<h3>Indexes</h3>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="160" valign="top">Keyname</td>
<td width="160" valign="top">Type</td>
<td width="160" valign="top">Cardinality</td>
<td width="160" valign="top">Field</td>
</tr>
<tr>
<td width="160" valign="top">PRIMARY</td>
<td width="160" valign="top">PRIMARY</td>
<td width="160" valign="top">1</td>
<td width="160" valign="top">ID</td>
</tr>
<tr>
<td width="160" valign="top">user_login_key</td>
<td width="160" valign="top">INDEX</td>
<td width="160" valign="top">None</td>
<td width="160" valign="top">user_login</td>
</tr>
<tr>
<td width="160" valign="top">user_nicename</td>
<td width="160" valign="top">INDEX</td>
<td width="160" valign="top">None</td>
<td width="160" valign="top">user_nicename</td>
</tr>
</tbody>
</table>
<p>here, password is  MD5 encrypted.</p>
<p>We manually are not supposed to make any entry in this table. However, you can use this function in your template or plugin:</p>
<p>wp_insert_user()</p>
<p>This function requires an array of data to be inserted for the user. Please check more details here <a href="http://codex.wordpress.org/Function_Reference/wp_insert_user">wp_insert_user()</a>.</p>


<p>Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_usermeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_usermeta'>Introduction to Wordpress Database: wp_usermeta</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_postmeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_postmeta'>Introduction to Wordpress Database: wp_postmeta</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Wordpress Database: wp_usermeta</title>
		<link>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_usermeta/</link>
		<comments>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_usermeta/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 10:41:29 +0000</pubDate>
		<dc:creator>Wordpress Guy</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[delete_usermeta]]></category>
		<category><![CDATA[get_usermeta]]></category>
		<category><![CDATA[update_usermeta]]></category>
		<category><![CDATA[wordpress database]]></category>
		<category><![CDATA[wp_usermeta]]></category>
		<category><![CDATA[wp_users]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3173</guid>
		<description><![CDATA[Introduction to Wordpress Database: wp_usermeta
Current Version: 2.9.2
In general, wordpress saves many user related data. It is difficult to save them in one column in wp_users. Hence Wordpress saves these data in wp_usermeta table. The structure of this table is mentioned below:



Field
Type
Null
Key
Default
Extra


umeta_id
bigint(20)   unsigned

PRI
NULL
auto_increment


user_id
bigint(20)   unsigned


&#8216;0&#8242;
FK-&#62;wp_users.ID


meta_key
varchar(255)
Yes
IND
NULL



meta_value
longtext
Yes
IND
NULL




Indexes



Keyname
Type
Cardinality
Field


PRIMARY
PRIMARY
9
umeta_id


user_id
INDEX
None
user_id


meta_key
INDEX
None
meta_key



In this table, we need to add following details:
user_id -&#62; user_id of the user
meta_key -&#62; a unique key for the user data
meta_value -&#62; the actual data to be saved.
Wordpress provides following functions to manage this table:
get_usermeta($userid, $metakey )
$userid
(integer) (required) The ID of the user whose ...


Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_postmeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_postmeta'>Introduction to Wordpress Database: wp_postmeta</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_users/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_users'>Introduction to Wordpress Database: wp_users</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_options/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_options'>Introduction to Wordpress Database: wp_options</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Introduction to Wordpress Database: wp_usermeta</h2>
<p><strong>Current Version: 2.9.2</strong></p>
<p>In general, wordpress saves many user related data. It is difficult to save them in one column in wp_users. Hence Wordpress saves these data in wp_usermeta table. The structure of this table is mentioned below:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="106" valign="top">Field</td>
<td width="106" valign="top">Type</td>
<td width="106" valign="top">Null</td>
<td width="106" valign="top">Key</td>
<td width="106" valign="top">Default</td>
<td width="106" valign="top">Extra</td>
</tr>
<tr>
<td width="106" valign="top">umeta_id</td>
<td width="106" valign="top">bigint(20)   unsigned</td>
<td width="106" valign="top"></td>
<td width="106" valign="top">PRI</td>
<td width="106" valign="top">NULL</td>
<td width="106" valign="top">auto_increment</td>
</tr>
<tr>
<td width="106" valign="top">user_id</td>
<td width="106" valign="top">bigint(20)   unsigned</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top">&#8216;0&#8242;</td>
<td width="106" valign="top">FK-&gt;wp_users.ID</td>
</tr>
<tr>
<td width="106" valign="top">meta_key</td>
<td width="106" valign="top">varchar(255)</td>
<td width="106" valign="top">Yes</td>
<td width="106" valign="top">IND</td>
<td width="106" valign="top">NULL</td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">meta_value</td>
<td width="106" valign="top">longtext</td>
<td width="106" valign="top">Yes</td>
<td width="106" valign="top">IND</td>
<td width="106" valign="top">NULL</td>
<td width="106" valign="top"></td>
</tr>
</tbody>
</table>
<p><strong>Indexes</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="160" valign="top">Keyname</td>
<td width="160" valign="top">Type</td>
<td width="160" valign="top">Cardinality</td>
<td width="160" valign="top">Field</td>
</tr>
<tr>
<td width="160" valign="top">PRIMARY</td>
<td width="160" valign="top">PRIMARY</td>
<td width="160" valign="top">9</td>
<td width="160" valign="top">umeta_id</td>
</tr>
<tr>
<td width="160" valign="top">user_id</td>
<td width="160" valign="top">INDEX</td>
<td width="160" valign="top">None</td>
<td width="160" valign="top">user_id</td>
</tr>
<tr>
<td width="160" valign="top">meta_key</td>
<td width="160" valign="top">INDEX</td>
<td width="160" valign="top">None</td>
<td width="160" valign="top">meta_key</td>
</tr>
</tbody>
</table>
<p>In this table, we need to add following details:</p>
<p>user_id -&gt; user_id of the user</p>
<p>meta_key -&gt; a unique key for the user data</p>
<p>meta_value -&gt; the actual data to be saved.</p>
<p>Wordpress provides following functions to manage this table:</p>
<p><span style="color: #0000ff;"><code>get_usermeta(</code><code>$userid, $metakey </code><code>)</code></span></p>
<p><tt>$userid</tt></p>
<p>(integer) (required) The ID of the user whose data should be retrieved.</p>
<p>Default: None</p>
<p><tt>$metakey</tt></p>
<p>(string) (required) The metakey value to be returned.</p>
<ul>
<li><tt>'metakey'</tt> The <strong>meta_key</strong> in the <a title="Database Description" href="http://codex.wordpress.org/Database_Description#Table:_wp_usermeta">wp_usermeta table</a> for the <strong>meta_value</strong> to be returned.</li>
</ul>
<p>Default: None</p>
<p><span style="color: #0000ff;"><code>update_usermeta( $userid, $metakey, $metavalue )</code></span></p>
<p><tt>$userid</tt></p>
<p>(integer) (required) The ID of the user whose data should be updated.</p>
<p>Default: None</p>
<p><tt>$meta_key</tt></p>
<p>(string) (required) The <strong>meta_key</strong> to be updated.</p>
<ul>
<li><tt>'meta_key'</tt> The <strong>meta_key</strong> in the <a title="Database Description" href="http://codex.wordpress.org/Database_Description#Table:_wp_usermeta">wp_usermeta table</a> for the <strong>meta_value</strong> to be updated.</li>
</ul>
<p>Default: None</p>
<p><tt>$meta_value</tt></p>
<p>(string) (required) The new desired value of the <strong>meta_key</strong>, which must be different from any existing value.</p>
<p>Default: None</p>
<p>Returns: true if success, false if failed</p>
<p><span style="color: #0000ff;"><code>delete_usermeta</code><code>( </code><code>$user_id</code><code>, </code><code>$meta_key</code><code>, </code><code>$meta_value </code><code>)</code></span></p>
<p>$user_id</p>
<p>(integer) (required) The ID of the WordPress user</p>
<p>Default: None</p>
<p>$meta_key</p>
<p>(string) (required) The <strong>meta_key</strong> field value</p>
<p>Default: None</p>
<p>$meta_value</p>
<p>(string) (optional) The <strong>meta_value</strong> field value; if omitted, the key is deleted regardless of value</p>
<p>Default: None</p>
<p>Returns: true if success, false if failed</p>


<p>Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_postmeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_postmeta'>Introduction to Wordpress Database: wp_postmeta</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_users/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_users'>Introduction to Wordpress Database: wp_users</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_options/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_options'>Introduction to Wordpress Database: wp_options</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_usermeta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Wordpress Database: wp_options</title>
		<link>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_options/</link>
		<comments>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_options/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 05:53:28 +0000</pubDate>
		<dc:creator>Wordpress Guy</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[add_option]]></category>
		<category><![CDATA[delete_option]]></category>
		<category><![CDATA[get_option]]></category>
		<category><![CDATA[update_option]]></category>
		<category><![CDATA[wordpress table]]></category>
		<category><![CDATA[wp_options]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3161</guid>
		<description><![CDATA[Introduction to Wordpress Database: wp_options
Current Version: 2.9.2
Wp_options tables is used to store wordpress’s default settings, standard options etc. The structure of the table is as follows:



Field
Type
NULL
Key
Default
Extra


option_id
bigint(20)   unsigned

PRI   Pt1
NULL
auto_increment


blog_id
int(11)

PRI   Pt2
0



option_name
varchar(64)

PRI   Pt3 &#38; IND




option_value
Longtext






Autoload
varchar(20)


Yes






Indexes



Keyname 
Type 
Cardinality 
Field 


PRIMARY
PRIMARY
184
option_id
blog_id
option_name


option_name
UNIQUE
184
option_name



This tables is used by wordpress to save  standard options, like blogurl, blog title, description, admin email address, rewrite rules etc.
This table is very useful for plugin and theme developers. A developer can store his own standard options in this table.
How to save data in this table:
To ...


Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_usermeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_usermeta'>Introduction to Wordpress Database: wp_usermeta</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Introduction to Wordpress Database: wp_options</p>
<p><strong>Current Version: 2.9.2</strong></p>
<p>Wp_options tables is used to store wordpress’s default settings, standard options etc. The structure of the table is as follows:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="106" valign="top"><strong>Field</strong></td>
<td width="106" valign="top"><strong>Type</strong></td>
<td width="106" valign="top"><strong>NULL</strong></td>
<td width="106" valign="top"><strong>Key</strong></td>
<td width="106" valign="top"><strong>Default</strong></td>
<td width="106" valign="top"><strong>Extra</strong></td>
</tr>
<tr>
<td width="106" valign="top">option_id</td>
<td width="106" valign="top">bigint(20)   unsigned</td>
<td width="106" valign="top"></td>
<td width="106" valign="top">PRI   Pt1</td>
<td width="106" valign="top">NULL</td>
<td width="106" valign="top">auto_increment</td>
</tr>
<tr>
<td width="106" valign="top">blog_id</td>
<td width="106" valign="top">int(11)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top">PRI   Pt2</td>
<td width="106" valign="top">0</td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">option_name</td>
<td width="106" valign="top">varchar(64)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top">PRI   Pt3 &amp; IND</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">option_value</td>
<td width="106" valign="top">Longtext</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
</tr>
<tr>
<td width="106" valign="top">Autoload</td>
<td width="106" valign="top">varchar(20)</td>
<td width="106" valign="top"></td>
<td width="106" valign="top"></td>
<td width="106" valign="top">Yes</td>
<td width="106" valign="top"></td>
</tr>
</tbody>
</table>
<p><strong><br />
</strong></p>
<p><strong>Indexes</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="160" valign="top"><strong>Keyname</strong><strong> </strong></td>
<td width="160" valign="top"><strong>Type</strong><strong> </strong></td>
<td width="160" valign="top"><strong>Cardinality</strong><strong> </strong></td>
<td width="160" valign="top"><strong>Field</strong><strong> </strong></td>
</tr>
<tr>
<td width="160" valign="top">PRIMARY</td>
<td width="160" valign="top">PRIMARY</td>
<td width="160" valign="top">184</td>
<td width="160" valign="top">option_id<br />
blog_id<br />
option_name</td>
</tr>
<tr>
<td width="160" valign="top">option_name</td>
<td width="160" valign="top">UNIQUE</td>
<td width="160" valign="top">184</td>
<td width="160" valign="top">option_name</td>
</tr>
</tbody>
</table>
<p>This tables is used by wordpress to save  standard options, like blogurl, blog title, description, admin email address, rewrite rules etc.</p>
<p>This table is very useful for plugin and theme developers. A developer can store his own standard options in this table.</p>
<p><strong>How to save data in this table:</strong></p>
<p>To save data in this table, you need to use a unique key for your data, like “my_tracking_code”. This  key is saved in option_name field. The actual value is stored in option_value field.</p>
<p>Use the following function to add your own option:</p>
<p><strong>add_option($name, $value = &#8221;, $deprecated = &#8221;, $autoload = &#8216;yes&#8217;);</strong></p>
<p>Where,</p>
<p>$name</p>
<p>(<em>string</em>) (<em>required</em>) Name of the option to be added. Use underscores to separate words, and do not use uppercase—this is going to be placed into the database.</p>
<p>Default: <em>None</em></p>
<p>$value</p>
<p>(<em>string</em>) (<em>optional</em>) Value for this option name. Limited to 2^32 bytes of data</p>
<p>Default: <em>Empty</em></p>
<p>$deprecated</p>
<p>(<em>string</em>) (<em>optional</em>) Unused.</p>
<p>Default: <em>Empty</em></p>
<p>$autoload</p>
<p>(<em>string</em>) (<em>optional</em>) Should this option be automatically loaded by the function wp_load_alloptions (puts options into object cache on each page load)? Valid values: <strong>yes</strong> or <strong>no</strong>.</p>
<p>Default: yes</p>
<p>Use the below mentioned function to update an existing option:</p>
<p><code><strong>update_option</strong></code><code><strong>( </strong></code><code><strong>$option_name</strong></code><code><strong>, </strong></code><code><strong>$newvalue </strong></code><code><strong>);</strong></code></p>
<p><strong>where,</strong></p>
<p>option_name</p>
<p>(<em>string</em>) (<em>required</em>) Name of the option to update. Default: <em>None</em></p>
<p>newvalue</p>
<p>(<em>mixed</em>) (<em>required</em>) The NEW value for this option name. This value can be a string, an array, an object or a serialized value.</p>
<p>Default: <em>None</em></p>
<p><strong> </strong></p>
<p><strong>How to retrieve options value:</strong></p>
<p><strong> </strong></p>
<p>Use the below function to retrieve the option value:</p>
<p><code><strong>get_option( $show, $default );</strong></code></p>
<p><code>where,</code></p>
<p>$show</p>
<p>(<em>string</em>) (<em>required</em>) Name of the option to retrieve. Default: <em>None</em></p>
<p>$default</p>
<p>(<em>mixed</em>) (<em>optional</em>) The default value to return if no value is returned (ie. the option is not in the database).</p>
<p>Default: false</p>
<p>This will return the option value in a variable.</p>
<p>A list of valid option reference is give by wordpress here:</p>
<p><a title="Option Reference" href="http://codex.wordpress.org/Option_Reference">Option_Reference</a></p>


<p>Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_usermeta/' rel='bookmark' title='Permanent Link: Introduction to Wordpress Database: wp_usermeta'>Introduction to Wordpress Database: wp_usermeta</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-database-wp_options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Features in Wordpress 2.9: A brief Introduction</title>
		<link>http://wordpress.exaspring.com/knowledge-base/new-features-in-wordpress-2-9-a-brief-introduction/</link>
		<comments>http://wordpress.exaspring.com/knowledge-base/new-features-in-wordpress-2-9-a-brief-introduction/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 14:50:41 +0000</pubDate>
		<dc:creator>Wordpress Guy</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[Automatic Database Repairing]]></category>
		<category><![CDATA[canonical]]></category>
		<category><![CDATA[image editor]]></category>
		<category><![CDATA[oEmbed]]></category>
		<category><![CDATA[post trash can]]></category>
		<category><![CDATA[Restoring Deleted Posts]]></category>
		<category><![CDATA[wordpress 2.9]]></category>
		<category><![CDATA[wordpress latest news]]></category>
		<category><![CDATA[wordpress new version]]></category>
		<category><![CDATA[Wordpress News]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3141</guid>
		<description><![CDATA[Image Editor
In WordPress 2.9 whenever you upload an image, you can edit it using the edit image option.

The image editor contains several useful functions such as image cropping, image rotation and image flipping. In addition, you can also undo and redo your actions.
Post Trash Can
Wordpress 2.9 provides a very useful feature, called Post Trash Can. We all are very well aware of this feature and we use it for emails. However, you can use this feature for posts and comments from wordpress 2.9.
wp2-92
The new Trash feature completely replaces the old ...


Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/how-to-hide-default-menu-of-buddypress/' rel='bookmark' title='Permanent Link: How to hide default menu of buddypress?'>How to hide default menu of buddypress?</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/check-wordpress-plugin-compatibility-before-upgrading/' rel='bookmark' title='Permanent Link: Check WordPress Plugin Compatibility before Upgrading/Installing'>Check WordPress Plugin Compatibility before Upgrading/Installing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Image Editor</p>
<p>In WordPress 2.9 whenever you upload an image, you can edit it using the edit image option.</p>
<p><img src="http://wordpress.exaspring.com/wp-content/uploads/2009/12/editor-299x241.jpg" alt="" title="editor" width="299" height="241" class="alignnone size-medium wp-image-3156" /></p>
<p>The image editor contains several useful functions such as image cropping, image rotation and image flipping. In addition, you can also undo and redo your actions.<br />
Post Trash Can</p>
<p>Wordpress 2.9 provides a very useful feature, called Post Trash Can. We all are very well aware of this feature and we use it for emails. However, you can use this feature for posts and comments from wordpress 2.9.</p>
<p>wp2-92</p>
<p>The new Trash feature completely replaces the old Delete functionality, when you click on the Trash link, the status of the post will be moved to “Trash”, and can be restored for a certain time limit, 30 days by default.</p>
<p>To view all the posts or page in Trash, just visit the Trash menu in the top of the Edit Posts or pages section.</p>
<p>You can also limit the number of days the trash can/should hold deleted posts by adding the following line to your wp-config.php:</p>
<p>define(’EMPTY_TRASH_DAYS’, 7);</p>
<p>Change the number 7 to the number of days you want to store deleted copies in the trash can.<br />
Restoring Deleted Posts</p>
<p>If you deleted posts by mistake, you can always get it back by visiting the Trash menu and clicking on the restore link.<br />
Disabling Trash Can Feature in WP 2.9</p>
<p>To disable trash feature, just add the following code to wp-config.php: define (’EMPTY_TRASH_DAYS’, 0);</p>
<p>Once you do that, you will see Delete Permanently option instead of Trash.</p>
<p>wp2-93<br />
Embedding Videos and Images with oEmbed</p>
<p>oEmbed provides media providers with a way to provide additional information about a media used from their sites you are adding it from. For more information on this visit the oEmbed site.</p>
<p>In short, you can now embed videos directly into WordPress by providing the URL of the video, instead of having to add the entire embed code into it.</p>
<p>oEmbed support is enabled by default, you can disable it by visiting Settings -> Media.<br />
Tackling Duplicate Content With rel=”canonical”</p>
<p>WordPress 2.9 adds a new tag to the page header which specifies the canonical path to the actual content. Using this tag is highly suggested if you want to tackle duplicate content.<br />
Automatic Database Repairing</p>
<p>WordPress 2.9 introduces a new feature which can help you to automatically repair database problems. This can come in very handy as not many users usually manage their database or optimize them.</p>
<p>To setup Automatic DB repairs in WP 2.9, you will need to add a new constant to your wp-config.php file as follows:</p>
<p>define(’WP_ALLOW_REPAIR’, true);</p>
<p>Once you do that, WordPress will automatically repair the DB periodically</p>


<p>Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/how-to-hide-default-menu-of-buddypress/' rel='bookmark' title='Permanent Link: How to hide default menu of buddypress?'>How to hide default menu of buddypress?</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/check-wordpress-plugin-compatibility-before-upgrading/' rel='bookmark' title='Permanent Link: Check WordPress Plugin Compatibility before Upgrading/Installing'>Check WordPress Plugin Compatibility before Upgrading/Installing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/knowledge-base/new-features-in-wordpress-2-9-a-brief-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set expiration date for a post using custom fields?</title>
		<link>http://wordpress.exaspring.com/knowledge-base/how-to-set-expiration-date-for-a-post-using-custom-fields/</link>
		<comments>http://wordpress.exaspring.com/knowledge-base/how-to-set-expiration-date-for-a-post-using-custom-fields/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 15:13:36 +0000</pubDate>
		<dc:creator>Wordpress Guy</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3129</guid>
		<description><![CDATA[Custom fields provide  a strong tool for developers to make it more user friendly and customizable.
Today, we will see how we can assign an expiration date to a post, so the post will disappear after a particular date:
1)      Change the default loop in your index.php file as mentioned below:

 

 
2)      Now, when you add/edit a post, add a custom field expiration and assign the date as value(with the format mm/dd/yyyy 00:00:00). The post will disappear after that date from the home page.
Note that if you do not assign the ...


Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/how-to-digg-your-wordpress-post/' rel='bookmark' title='Permanent Link: How to Digg your wordpress post?'>How to Digg your wordpress post?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Custom fields provide  a strong tool for developers to make it more user friendly and customizable.</p>
<p>Today, we will see how we can assign an <strong>expiration</strong> <strong>date</strong> to a <strong>post</strong>, so the <strong>post</strong> will disappear after a particular <strong>date</strong>:</p>
<p>1)      Change the default loop in your index.php file as mentioned below:</p>
<pre><strong><em></em></strong>
<strong> </strong>

<strong><em> </em></strong></pre>
<p>2)      Now, when you add/edit a <strong>post</strong>, add a <strong>custom</strong> field <strong>expiration</strong> and assign the <strong>date</strong> as value(with the format mm/dd/yyyy 00:00:00). The <strong>post</strong> will disappear after that <strong>date</strong> from the home page.</p>
<p>Note that if you do not assign the <strong>custom</strong> field to a <strong>post</strong>, that <strong>post</strong> will not appear on your home page. This code needs some modification for the same.</p>


<p>Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/how-to-digg-your-wordpress-post/' rel='bookmark' title='Permanent Link: How to Digg your wordpress post?'>How to Digg your wordpress post?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/knowledge-base/how-to-set-expiration-date-for-a-post-using-custom-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Wordpress Filters</title>
		<link>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-filters/</link>
		<comments>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-filters/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 07:52:14 +0000</pubDate>
		<dc:creator>Wordpress Guy</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[action hook]]></category>
		<category><![CDATA[wordpress codex]]></category>
		<category><![CDATA[wordpress filters]]></category>
		<category><![CDATA[wordpress tricks]]></category>
		<category><![CDATA[wordpress tutorials]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3124</guid>
		<description><![CDATA[Introduction to Wordpress Filters
What is a Filter?
Filters are functions that WordPress passes data through, at certain points in execution, just before taking some action with the data (such as adding it to the database or sending it to the browser screen).
Filters passed data between database and browser. Most inputs and outputs in wordpress need to pass through at least one filter.
You can add your own filter to a plugin or theme for special purpose.
The basic steps to add your own filters to WordPress (described in more detail below) are:

Create the ...


No related posts.]]></description>
			<content:encoded><![CDATA[<h2>Introduction to Wordpress Filters</h2>
<h2>What is a Filter?</h2>
<p><strong>Filters</strong> are functions that WordPress passes data through, at certain points in execution, just before taking some action with the data (such as adding it to the database or sending it to the browser screen).</p>
<p>Filters passed data between database and browser. Most inputs and outputs in wordpress need to pass through at least one filter.</p>
<p>You can add your own filter to a plugin or theme for special purpose.</p>
<p>The basic steps to add your own filters to WordPress (described in more detail below) are:</p>
<ol>
<li>Create the PHP      function tha? filters the data.</li>
<li>Hook to the      filter in WordPress, by calling <tt>add_filter()</tt></li>
<li>Put your PHP      function in a plugin file, and activate it.</li>
</ol>
<p>We will have more look on how to create a filter in next articles.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/knowledge-base/introduction-to-wordpress-filters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8.6 Released &#8211; Security Update</title>
		<link>http://wordpress.exaspring.com/wordpress-news/wordpress-2-8-6-released-security-update/</link>
		<comments>http://wordpress.exaspring.com/wordpress-news/wordpress-2-8-6-released-security-update/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 05:50:12 +0000</pubDate>
		<dc:creator>Wordpress Guy</dc:creator>
				<category><![CDATA[Wordpress News]]></category>
		<category><![CDATA[latest versions]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3111</guid>
		<description><![CDATA[2.8.6 fixes two security problems that can be exploited by registered, logged in users who have posting privileges.


Related posts:Wordpress 2.8.3 Released!!
WordPress 2.8.4 Released
Wordpress 2.8.2 Released!



Related posts:<ol><li><a href='http://wordpress.exaspring.com/wordpress-news/wordpress-2-8-3-released/' rel='bookmark' title='Permanent Link: Wordpress 2.8.3 Released!!'>Wordpress 2.8.3 Released!!</a></li>
<li><a href='http://wordpress.exaspring.com/wordpress-news/wordpress-2-8-4-released/' rel='bookmark' title='Permanent Link: WordPress 2.8.4 Released'>WordPress 2.8.4 Released</a></li>
<li><a href='http://wordpress.exaspring.com/wordpress-news/wordpress-2-8-2-released/' rel='bookmark' title='Permanent Link: Wordpress 2.8.2 Released!'>Wordpress 2.8.2 Released!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<blockquote><p>2.8.6 fixes two security problems that can be exploited by registered, logged in users who have posting privileges.</p>


<p>Related posts:<ol><li><a href='http://wordpress.exaspring.com/wordpress-news/wordpress-2-8-3-released/' rel='bookmark' title='Permanent Link: Wordpress 2.8.3 Released!!'>Wordpress 2.8.3 Released!!</a></li>
<li><a href='http://wordpress.exaspring.com/wordpress-news/wordpress-2-8-4-released/' rel='bookmark' title='Permanent Link: WordPress 2.8.4 Released'>WordPress 2.8.4 Released</a></li>
<li><a href='http://wordpress.exaspring.com/wordpress-news/wordpress-2-8-2-released/' rel='bookmark' title='Permanent Link: Wordpress 2.8.2 Released!'>Wordpress 2.8.2 Released!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/wordpress-news/wordpress-2-8-6-released-security-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check WordPress Plugin Compatibility before Upgrading/Installing</title>
		<link>http://wordpress.exaspring.com/knowledge-base/check-wordpress-plugin-compatibility-before-upgrading/</link>
		<comments>http://wordpress.exaspring.com/knowledge-base/check-wordpress-plugin-compatibility-before-upgrading/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 09:45:31 +0000</pubDate>
		<dc:creator>Wordpress Guy</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[plugins compatibility]]></category>
		<category><![CDATA[wordpress features]]></category>
		<category><![CDATA[Wordpress News]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3098</guid>
		<description><![CDATA[Check WordPress ?lugin Compatibility before Upgrading
Now, wordpress users can check if the plugin is compatible with their wordpress version before installing the plugin itself. This feature is in testing (Beta) and has been implemented for several plugins in the wordpress directory.
You can check this for any version of wordpress and the plugin itself. Check the screen capture here:



Related posts:How to get a wordpress.com API key?



Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/how-to-get-a-wordpress-com-api-key/' rel='bookmark' title='Permanent Link: How to get a wordpress.com API key?'>How to get a wordpress.com API key?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Check WordPress ?lugin Compatibility before Upgrading</p>
<p>Now, wordpress users can check if the plugin is compatible with their wordpress version before installing the plugin itself. This feature is in testing (Beta) and has been implemented for several plugins in the wordpress directory.</p>
<p>You can check this for any version of wordpress and the plugin itself. Check the screen capture here:</p>
<p><img class="size-full wp-image-3099 alignleft" title="wp-exa1" src="http://wordpress.exaspring.com/wp-content/uploads/2009/11/wp-exa1.JPG" alt="wp-exa1" width="215" height="254" /></p>


<p>Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/how-to-get-a-wordpress-com-api-key/' rel='bookmark' title='Permanent Link: How to get a wordpress.com API key?'>How to get a wordpress.com API key?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/knowledge-base/check-wordpress-plugin-compatibility-before-upgrading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Podcast in Wordpress</title>
		<link>http://wordpress.exaspring.com/knowledge-base/introduction-to-podcast-in-wordpress/</link>
		<comments>http://wordpress.exaspring.com/knowledge-base/introduction-to-podcast-in-wordpress/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 07:50:03 +0000</pubDate>
		<dc:creator>Wordpress Guy</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[media files]]></category>
		<category><![CDATA[podcasting]]></category>
		<category><![CDATA[podcasting in wordpress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpress.exaspring.com/?p=3089</guid>
		<description><![CDATA[What is podcasting?
Podcasting is distributing audio or video content via RSS 2.0, or Atom. Podcast clients such as iTunes, Juice, or CastPodder(linux) allow listeners to subscribe to your RSS/Atom feed and automatically download your content to their portable audio players as it becomes available.
Podcast in Wordpress: (wordpress.com)
Create audio or video that you want to share (usually MP3 or MP4)
Upload the file to a server
Link to the file in a post in your weblog
Wordpress automatically Includes a link to the file in your RSS/Atom feed
Listeners 


Related posts:New Features in Wordpress 2.9: ...


Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/new-features-in-wordpress-2-9-a-brief-introduction/' rel='bookmark' title='Permanent Link: New Features in Wordpress 2.9: A brief Introduction'>New Features in Wordpress 2.9: A brief Introduction</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/an-introduction-to-feed-and-reader/' rel='bookmark' title='Permanent Link: An Introduction to Feed and Reader'>An Introduction to Feed and Reader</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/increase-rss-update-time-limit-wordpress-2-8-3/' rel='bookmark' title='Permanent Link: Increase RSS Update Time Limit &#124; Wordpress 2.8.3'>Increase RSS Update Time Limit &#124; Wordpress 2.8.3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<blockquote><p>What is podcasting?</p>
<p>Podcasting is distributing audio or video content via RSS 2.0, or Atom. Podcast clients such as iTunes, Juice, or CastPodder(linux) allow listeners to subscribe to your RSS/Atom feed and automatically download your content to their portable audio players as it becomes available.</p>
<p>Podcast in Wordpress: (wordpress.com)</p>
<p>Create audio or video that you want to share (usually MP3 or MP4)<br />
Upload the file to a server<br />
Link to the file in a post in your weblog<br />
Wordpress automatically Includes a link to the file in your RSS/Atom feed<br />
Listeners </p>


<p>Related posts:<ol><li><a href='http://wordpress.exaspring.com/knowledge-base/new-features-in-wordpress-2-9-a-brief-introduction/' rel='bookmark' title='Permanent Link: New Features in Wordpress 2.9: A brief Introduction'>New Features in Wordpress 2.9: A brief Introduction</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/an-introduction-to-feed-and-reader/' rel='bookmark' title='Permanent Link: An Introduction to Feed and Reader'>An Introduction to Feed and Reader</a></li>
<li><a href='http://wordpress.exaspring.com/knowledge-base/increase-rss-update-time-limit-wordpress-2-8-3/' rel='bookmark' title='Permanent Link: Increase RSS Update Time Limit &#124; Wordpress 2.8.3'>Increase RSS Update Time Limit &#124; Wordpress 2.8.3</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.exaspring.com/knowledge-base/introduction-to-podcast-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
