<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Webexperts</title>
	<link>http://www.webexperts4u.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 11 Feb 2012 07:51:24 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>Displaying Posts from One OR the Other</title>
		<description><![CDATA[$myquery['tax_query'] = array( 'relation' =&#62; 'OR', array( 'taxonomy' =&#62; 'category', 'terms' =&#62; array('cat1'), 'field' =&#62; 'slug', ), array( 'taxonomy' =&#62; 'post_tag', 'terms' =&#62; array('tag1'), 'field' =&#62; 'slug', ), ); query_posts($myquery);]]></description>
		<link>http://www.webexperts4u.com/displaying-posts-from-one-or-the-other/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=displaying-posts-from-one-or-the-other</link>
			</item>
	<item>
		<title>Excluding All Posts Categorized in Either Category</title>
		<description><![CDATA[$myquery['tax_query'] = array( array( 'taxonomy' =&#62; 'category', 'terms' =&#62; array('cat1', 'cat2'), 'field' =&#62; 'slug', 'operator' =&#62; 'NOT IN', ), ); query_posts($myquery);]]></description>
		<link>http://www.webexperts4u.com/excluding-all-posts-categorized-in-either-category/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=excluding-all-posts-categorized-in-either-category</link>
			</item>
	<item>
		<title>Query Multiple Taxonomies in WP 3.1</title>
		<description><![CDATA[$myquery['tax_query'] = array( array( 'taxonomy' =&#62; 'category', 'terms' =&#62; array('category1'), 'field' =&#62; 'slug', ), array( 'taxonomy' =&#62; 'post_tag', 'terms' =&#62; array('tag1'), 'field' =&#62; 'slug', ), ); query_posts($myquery);]]></description>
		<link>http://www.webexperts4u.com/query-multiple-taxonomies-in-wp-3-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=query-multiple-taxonomies-in-wp-3-1</link>
			</item>
	<item>
		<title>The Power of Social Book-marking For Your Web Sites</title>
		<description><![CDATA[Author: Tom Larson Social book-marking is a powerful tool and it will help to increase your web site&#8217;s traffic the fastest way possible. When a user bookmarks your site it creates a link from the social network and helps to build a stronger search engine&#8217;s page rank. This is a unique way to go about [...]]]></description>
		<link>http://www.webexperts4u.com/the-power-of-social-book-marking-for-your-web-sites/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-power-of-social-book-marking-for-your-web-sites</link>
			</item>
	<item>
		<title>When do I start SEO?</title>
		<description><![CDATA[Author: linkbuilder2011 Thought I&#8217;d nip this in the bud ……its a question you may ask yourself – when launching a Website or Blog – &#8220;When do I start SEO on my website?&#8221;. If you have selected a reputable web design company then it will be in both interests – that SEO is discussed… remember there&#8217;s [...]]]></description>
		<link>http://www.webexperts4u.com/when-do-i-start-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=when-do-i-start-seo</link>
			</item>
	<item>
		<title>How to Add Custom Post Types to Your Main WordPress RSS Feed</title>
		<description><![CDATA[function myfeed_request($qv) { if (isset($qv['feed']) &#38;&#38; !isset($qv['post_type'])) $qv['post_type'] = array(&#8216;post&#8217;, &#8216;banner&#8217;); return $qv; } add_filter(&#8216;request&#8217;, &#8216;myfeed_request&#8217;);]]></description>
		<link>http://www.webexperts4u.com/how-to-add-custom-post-types-to-your-main-wordpress-rss-feed-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-add-custom-post-types-to-your-main-wordpress-rss-feed-2</link>
			</item>
	<item>
		<title>Adding Custom Post Type Counts To Your Dashboard</title>
		<description><![CDATA[function add_count() { if (!post_type_exists($this-&#62;type)) { return; } $num_posts = wp_count_posts( $this-&#62;type ); $num = number_format_i18n( $num_posts-&#62;publish ); $text = _n( $this-&#62;single, $this-&#62;plural, intval($num_posts-&#62;publish) ); if ( current_user_can( &#8216;edit_posts&#8217; ) ) { $num = &#8220;&#60;a href=&#8217;edit.php?post_type=&#8221; . $this-&#62;type . &#8220;&#8216;&#62;$num&#60;/a&#62;&#8221;; $text = &#8220;&#60;a href=&#8217;edit.php?post_type=&#8221; . $this-&#62;type . &#8220;&#8216;&#62;$text&#60;/a&#62;&#8221;; } echo &#8216;&#60;td&#62;&#8217; . $num . &#8216;&#60;/td&#62;&#8217;; [...]]]></description>
		<link>http://www.webexperts4u.com/adding-custom-post-type-counts-to-your-dashboard/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adding-custom-post-type-counts-to-your-dashboard</link>
			</item>
	<item>
		<title>Use .htaccess To Protect The wp-config File</title>
		<description><![CDATA[&#60;files wp-config.php&#62; order allow,deny deny from all &#60;/files&#62;]]></description>
		<link>http://www.webexperts4u.com/use-htaccess-to-protect-the-wp-config-file/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=use-htaccess-to-protect-the-wp-config-file</link>
			</item>
	<item>
		<title>Modify footer &amp; add our information</title>
		<description><![CDATA[add_filter( &#8216;admin_footer_text&#8217;, &#8216;my_admin_footer_text&#8217; ); function my_admin_footer_text( $default_text ) { return &#8216;&#60;span id=&#8221;footer-thankyou&#8221;&#62;Website redeveloped by &#60;a href=&#8221;http://www.webexperts4u.com&#8221; target=&#8221;_blank&#8221;&#62;WebExperts&#60;/a&#62;&#60;span&#62; &#124; Powered by &#60;a href=&#8221;http://www.wordpress.org&#8221; target=&#8221;_blank&#8221;&#62;WordPress&#60;/a&#62;&#8217;; }]]></description>
		<link>http://www.webexperts4u.com/modify-footer-add-our-information/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=modify-footer-add-our-information</link>
			</item>
	<item>
		<title>How to Add Custom Post Types to Your Main WordPress RSS Feed</title>
		<description><![CDATA[function myfeed_request($qv) { if (isset($qv['feed']) &#38;&#38; !isset($qv['post_type'])) $qv['post_type'] = array(&#8216;post&#8217;, &#8216;banner&#8217;); return $qv; } add_filter(&#8216;request&#8217;, &#8216;myfeed_request&#8217;);]]></description>
		<link>http://www.webexperts4u.com/how-to-add-custom-post-types-to-your-main-wordpress-rss-feed/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-add-custom-post-types-to-your-main-wordpress-rss-feed</link>
			</item>
</channel>
</rss>

