<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6" -->
<rss version="0.92">
<channel>
	<title>WordPress Hooks</title>
	<link>http://wphooks.flatearth.org</link>
	<description>A directory of all of WordPress' hooks</description>
	<lastBuildDate>Mon, 10 Mar 2008 06:06:12 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>cat_rows</title>
		<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>
		<link>http://wphooks.flatearth.org/hooks/cat_rows/</link>
			</item>
	<item>
		<title>cat_row</title>
		<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>
		<link>http://wphooks.flatearth.org/hooks/cat_row/</link>
			</item>
	<item>
		<title>nag_posts_limit</title>
		<description><![CDATA[
]]></description>
		<link>http://wphooks.flatearth.org/hooks/nag_posts_limit/</link>
			</item>
	<item>
		<title>login_errors</title>
		<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>
		<link>http://wphooks.flatearth.org/hooks/login_errors/</link>
			</item>
	<item>
		<title>login_message</title>
		<description><![CDATA[login_message is a filter that filters the messages located the top of the lost password form and the registration form.
]]></description>
		<link>http://wphooks.flatearth.org/hooks/login_message/</link>
			</item>
</channel>
</rss>

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