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

<channel>
	<title>WordPress Hooks</title>
	<atom:link href="http://wphooks.flatearth.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://wphooks.flatearth.org</link>
	<description>A directory of all of WordPress' hooks</description>
	<pubDate>Mon, 10 Mar 2008 06:06:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>cat_rows</title>
		<link>http://wphooks.flatearth.org/hooks/cat_rows/</link>
		<comments>http://wphooks.flatearth.org/hooks/cat_rows/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 17:32:07 +0000</pubDate>
		<dc:creator>John Blackbourn</dc:creator>
		
		<category><![CDATA[Admin]]></category>

		<category><![CDATA[Filter]]></category>

		<guid isPermaLink="false">http://wphooks.flatearth.org/hooks/cat_rows/</guid>
		<description><![CDATA[cat_rows is a filter that filters the display of the categories lists under Manage -> Categories and Blogroll -> Categories. To filter individual rows instead of the whole list, use the cat_row filter.
Context:File: wp-admin/includes/template.php$output = ob_get_contents();
ob_end_clean();

$output = apply_filters(&#039;cat_rows&#039;, $output);

echo $output;
Context:File: wp-admin/edit-link-categories.phpforeach ( $categories as $category ) {
	$category = sanitize_term($category, &#039;link_category&#039;, &#039;display&#039;);
	$output .= link_cat_row($category);
}
$output = apply_filters(&#039;cat_rows&#039;, [...]]]></description>
		<wfw:commentRss>http://wphooks.flatearth.org/hooks/cat_rows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>cat_row</title>
		<link>http://wphooks.flatearth.org/hooks/cat_row/</link>
		<comments>http://wphooks.flatearth.org/hooks/cat_row/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 17:22:45 +0000</pubDate>
		<dc:creator>John Blackbourn</dc:creator>
		
		<category><![CDATA[Admin]]></category>

		<category><![CDATA[Filter]]></category>

		<guid isPermaLink="false">http://wphooks.flatearth.org/hooks/cat_row/</guid>
		<description><![CDATA[cat_row is a filter that filters each row of the categories list under Manage -> Categories. More usefully, it also filters rows which are added to the list via AJAX when a new category is added from Manage -> Categories -> Add Category.
Context:File: wp-admin/includes/template.php$output = &#34;&#60;tr id=&#039;cat-$category-&#62;term_id&#039;$class&#62;
	&#60;th scope=&#039;row&#039; style=&#039;text-align: center&#039;&#62;$category-&#62;term_id&#60;/th&#62;
	&#60;td&#62;&#34; . ( $name_override ? $name_override [...]]]></description>
		<wfw:commentRss>http://wphooks.flatearth.org/hooks/cat_row/feed/</wfw:commentRss>
		</item>
		<item>
		<title>nag_posts_limit</title>
		<link>http://wphooks.flatearth.org/hooks/nag_posts_limit/</link>
		<comments>http://wphooks.flatearth.org/hooks/nag_posts_limit/#comments</comments>
		<pubDate>Sat, 22 Sep 2007 04:45:10 +0000</pubDate>
		<dc:creator>Viper007Bond</dc:creator>
		
		<category><![CDATA[Filter]]></category>

		<guid isPermaLink="false">http://wphooks.flatearth.org/hooks/nag_posts_limit/</guid>
		<description><![CDATA[
]]></description>
		<wfw:commentRss>http://wphooks.flatearth.org/hooks/nag_posts_limit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>login_errors</title>
		<link>http://wphooks.flatearth.org/hooks/login_errors/</link>
		<comments>http://wphooks.flatearth.org/hooks/login_errors/#comments</comments>
		<pubDate>Sun, 22 Oct 2006 04:25:31 +0000</pubDate>
		<dc:creator>Viper007Bond</dc:creator>
		
		<category><![CDATA[Filter]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[WordPress 2.1 Only]]></category>

		<guid isPermaLink="false">http://wphooks.flatearth.org/hooks/login_errors/</guid>
		<description><![CDATA[login_errors is a filter that filters any error messages in wp-login.php
Context:File: wp-login.phpif ( !empty( $errors ) ) {
	if ( is_array( $errors ) ) {
		$newerrors = &#34;\\n&#34;;
		foreach ( $errors as $error ) $newerrors .= &#039;	&#039; . $error . &#34;\\n&#34;;
		$errors = $newerrors;
	}

	echo &#039;&#60;div id=&#34;login_error&#34;&#62;&#039; . apply_filters(&#039;login_errors&#039;, $errors) . &#34;&#60;/div&#62;\\n&#34;;
}
]]></description>
		<wfw:commentRss>http://wphooks.flatearth.org/hooks/login_errors/feed/</wfw:commentRss>
		</item>
		<item>
		<title>login_message</title>
		<link>http://wphooks.flatearth.org/hooks/login_message/</link>
		<comments>http://wphooks.flatearth.org/hooks/login_message/#comments</comments>
		<pubDate>Sun, 22 Oct 2006 04:23:29 +0000</pubDate>
		<dc:creator>Viper007Bond</dc:creator>
		
		<category><![CDATA[Filter]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[WordPress 2.1 Only]]></category>

		<guid isPermaLink="false">http://wphooks.flatearth.org/hooks/login_message/</guid>
		<description><![CDATA[login_message is a filter that filters the messages located the top of the lost password form and the registration form.
]]></description>
		<wfw:commentRss>http://wphooks.flatearth.org/hooks/login_message/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.051 seconds -->
<!-- Cached page served by WP-Cache -->
<!-- Compression = gzip -->