<?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>Ruben Sargsyan &#187; Wordpress</title>
	<atom:link href="http://rubensargsyan.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://rubensargsyan.com</link>
	<description>Personal Website</description>
	<lastBuildDate>Thu, 03 May 2012 21:02:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>WordPress plugin &#8220;Quick Navigation Panel&#8221; new 1.1 version</title>
		<link>http://rubensargsyan.com/wordpress-plugin-quick-navigation-panel-new-1-1-version/</link>
		<comments>http://rubensargsyan.com/wordpress-plugin-quick-navigation-panel-new-1-1-version/#comments</comments>
		<pubDate>Thu, 03 May 2012 21:02:30 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[new version]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[quick navigation]]></category>
		<category><![CDATA[quick navigation panel]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=737</guid>
		<description><![CDATA[The new version of WordPress plugin &#8220;Quick Navigation Panel&#8221; 1.1 is created. The following updates have been done in this version: 1. Added new option &#8220;Exclude&#8221;. 2. Now you can set an external CSS for styling the quick navigation panel. 3. Fixed some bugs. Plugin Homepage]]></description>
			<content:encoded><![CDATA[<p>The new version of WordPress plugin &#8220;Quick Navigation Panel&#8221; 1.1 is created. The following updates have been done in this version:<span id="more-737"></span></p>
<p>1. Added new option &#8220;Exclude&#8221;.<br />
2. Now you can set an external CSS for styling the quick navigation panel.<br />
3. Fixed some bugs.</p>
<p><a href="http://rubensargsyan.com/wordpress-plugin-quick-navigation-panel/">Plugin Homepage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/wordpress-plugin-quick-navigation-panel-new-1-1-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get values of a custom field belonging to the category or tag posts in WordPress</title>
		<link>http://rubensargsyan.com/get-values-of-a-custom-field-belonging-to-the-category-or-tag-posts-in-wordpress/</link>
		<comments>http://rubensargsyan.com/get-values-of-a-custom-field-belonging-to-the-category-or-tag-posts-in-wordpress/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 06:17:09 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[custom fields]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=728</guid>
		<description><![CDATA[This is an example how to get the values of a custom field belonging to the category or tag posts in WordPress: &#60;?php function get_custom_field_values&#40;$custom_field,$term_id&#41;&#123; global $wpdb; &#160; $query = &#34;SELECT &#34;.$wpdb-&#62;prefix.&#34;postmeta.meta_value FROM &#34;.$wpdb-&#62;prefix.&#34;postmeta JOIN &#34;.$wpdb-&#62;prefix.&#34;term_relationships ON &#34;.$wpdb-&#62;prefix.&#34;term_relationships.object_id = &#34;.$wpdb-&#62;prefix.&#34;postmeta.post_id JOIN &#34;.$wpdb-&#62;prefix.&#34;term_taxonomy ON &#34;.$wpdb-&#62;prefix.&#34;term_relationships.term_taxonomy_id = &#34;.$wpdb-&#62;prefix.&#34;term_taxonomy.term_taxonomy_id AND &#34;.$wpdb-&#62;prefix.&#34;term_taxonomy.term_id='&#34;.$term_id.&#34;' WHERE meta_key = '&#34;.$custom_field.&#34;' GROUP BY &#34;.$wpdb-&#62;prefix.&#34;postmeta.meta_value;&#34;; [...]]]></description>
			<content:encoded><![CDATA[<p>This is an example how to get the values of a custom field belonging to the category or tag posts in WordPress:<span id="more-728"></span></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> get_custom_field_values<span style="color: #009900;">&#40;</span><span style="color: #000088;">$custom_field</span><span style="color: #339933;">,</span><span style="color: #000088;">$term_id</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;SELECT &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;postmeta.meta_value FROM &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;postmeta JOIN &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;term_relationships ON &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;term_relationships.object_id = &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;postmeta.post_id JOIN &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;term_taxonomy ON &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;term_relationships.term_taxonomy_id = &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;term_taxonomy.term_taxonomy_id AND &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;term_taxonomy.term_id='&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$term_id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;' WHERE meta_key = '&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$custom_field</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;' GROUP BY &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;postmeta.meta_value;&quot;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
<span style="color: #000088;">$custom_field</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Brand&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//Custom field name</span>
<span style="color: #000088;">$term_id</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">7</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//Category or tag ID</span>
&nbsp;
<span style="color: #000088;">$custom_field_values</span> <span style="color: #339933;">=</span> get_custom_field_values<span style="color: #009900;">&#40;</span><span style="color: #000088;">$custom_field</span><span style="color: #339933;">,</span><span style="color: #000088;">$term_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/get-values-of-a-custom-field-belonging-to-the-category-or-tag-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress plugin &#8220;Share Buttons Simple Use&#8221; new 1.3 version</title>
		<link>http://rubensargsyan.com/wordpress-plugin-share-buttons-simple-use-new-1-3-version/</link>
		<comments>http://rubensargsyan.com/wordpress-plugin-share-buttons-simple-use-new-1-3-version/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 15:57:29 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google plus]]></category>
		<category><![CDATA[new version]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[share buttons]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=718</guid>
		<description><![CDATA[The new version of WordPress plugin &#8220;Share Buttons Simple Use&#8221; 1.3 is created. The following updates have been done in this version: 1. Google buzz button is removed. 2. Google plus button is added. Plugin Homepage]]></description>
			<content:encoded><![CDATA[<p>The new version of WordPress plugin &#8220;Share Buttons Simple Use&#8221; 1.3 is created. The following updates have been done in this version:<span id="more-718"></span></p>
<p>1. Google buzz button is removed.<br />
2. Google plus button is added.</p>
<p><a href="http://rubensargsyan.com/wordpress-plugin-share-buttons-simple-use/">Plugin Homepage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/wordpress-plugin-share-buttons-simple-use-new-1-3-version/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Get user added custom fields in WordPress</title>
		<link>http://rubensargsyan.com/get-user-added-custom-fields-in-wordpress/</link>
		<comments>http://rubensargsyan.com/get-user-added-custom-fields-in-wordpress/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 19:08:21 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[custom fields]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=712</guid>
		<description><![CDATA[A short code to get all user added custom fields in WordPress: &#60;?php $custom_fields = $wpdb-&#62;get_col&#40;&#34;SELECT meta_key FROM $wpdb-&#62;postmeta GROUP BY meta_key HAVING meta_key NOT LIKE '\_%' ORDER BY meta_key&#34;&#41;; natcasesort&#40;$custom_fields&#41;; ?&#62;]]></description>
			<content:encoded><![CDATA[<p>A short code to get all user added custom fields in WordPress:<span id="more-712"></span></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$custom_fields</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_col</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT meta_key FROM <span style="color: #006699; font-weight: bold;">$wpdb-&gt;postmeta</span> GROUP BY meta_key	HAVING meta_key NOT LIKE '\_%' ORDER BY meta_key&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">natcasesort</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$custom_fields</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/get-user-added-custom-fields-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress plugin &#8220;Automatically Remove Links From Posts&#8221;</title>
		<link>http://rubensargsyan.com/wordpress-plugin-automatically-remove-links-from-posts/</link>
		<comments>http://rubensargsyan.com/wordpress-plugin-automatically-remove-links-from-posts/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 19:14:40 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[auto posting]]></category>
		<category><![CDATA[autoblog]]></category>
		<category><![CDATA[outbound links]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=699</guid>
		<description><![CDATA[Automatically remove links from posts when they are published and keep the anchor text in tact. This is a plugin for those with autoblogs or outsourcing content and do not want external links on their site. It automatically strips all outgoing links. Download the plugin &#160; If you find this plugin useful to you, please [...]]]></description>
			<content:encoded><![CDATA[<p>Automatically remove links from posts when they are published and keep the anchor text in tact. This is a plugin for those with autoblogs or outsourcing content and do not want external links on their site. It automatically strips all outgoing links.<span id="more-699"></span></p>
<h2><a href="http://downloads.wordpress.org/plugin/automatically-remove-links-from-posts.zip">Download the plugin</a></h2>
<p>&nbsp;</p>
<p>If you find this plugin useful to you, please consider making a small donation to help contribute to further development. Thanks for your kind support!<br />
<a href="http://rubensargsyan.com/donate/"><img src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" alt="Donate" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/wordpress-plugin-automatically-remove-links-from-posts/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>WordPress plugin &#8220;Explanatory Dictionary&#8221; new 3.0 version</title>
		<link>http://rubensargsyan.com/wordpress-plugin-explanatory-dictionary-new-3-0-version/</link>
		<comments>http://rubensargsyan.com/wordpress-plugin-explanatory-dictionary-new-3-0-version/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 17:54:32 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[explanatory dictionary]]></category>
		<category><![CDATA[highlight]]></category>
		<category><![CDATA[new version]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=689</guid>
		<description><![CDATA[The new version of WordPress plugin &#8220;Explanatory Dictionary&#8221; 3.0. is created. The following updates have been done in this version: 1. The tooltips show and hide using jQuery fadeIn and fadeOut effects. 2. Now you can move the mouse cursor over the tooltip. 3. You can add HTML code in the explanation. 4. Added &#8220;Synonyms [...]]]></description>
			<content:encoded><![CDATA[<p>The new version of WordPress plugin &#8220;Explanatory Dictionary&#8221; 3.0. is created. The following updates have been done in this version:<span id="more-689"></span></p>
<p>1. The tooltips show and hide using jQuery fadeIn and fadeOut effects.<br />
2. Now you can move the mouse cursor over the tooltip.<br />
3. You can add HTML code in the explanation.<br />
4. Added &#8220;Synonyms and forms&#8221; field where you can add the synonyms and/or the different forms of the words (words expressions, sentences) and it will show their explanation as well.<br />
5. Besides the fields &#8220;Explanation&#8221; you can also edit the fields &#8220;Word (words expression, sentence)&#8221; and &#8220;Synonyms and forms&#8221; as well.<br />
6. The first page of the glossary shows all words (words expressions, sentences) with their explanations.<br />
7. Now you can remove the alphabet.<br />
8. Now you can remove the tooltips and use only the glossary page.</p>
<p>&nbsp;</p>
<p><a href="http://rubensargsyan.com/wordpress-plugin-explanatory-dictionary/">Plugin Homepage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/wordpress-plugin-explanatory-dictionary-new-3-0-version/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress plugin &#8220;Useful Banner Manager&#8221; new 1.1 version</title>
		<link>http://rubensargsyan.com/wordpress-plugin-useful-banner-manager-new-1-1-version/</link>
		<comments>http://rubensargsyan.com/wordpress-plugin-useful-banner-manager-new-1-1-version/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 18:40:15 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[banner manager]]></category>
		<category><![CDATA[new version]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=674</guid>
		<description><![CDATA[The new version of WordPress plugin &#8220;Useful Banner Manager&#8221; 1.1 is created. The following updates have been done in this version: 1. Added banners rotation function. 2. Added new options for banners &#8211; &#8220;Image Alt&#8221; and &#8220;Link Rel&#8221;. 3. Fixed some bugs. Plugin Homepage]]></description>
			<content:encoded><![CDATA[<p>The new version of WordPress plugin &#8220;Useful Banner Manager&#8221; 1.1 is created. The following updates have been done in this version:<span id="more-674"></span></p>
<p>1. Added banners rotation function.<br />
2. Added new options for banners &#8211; &#8220;Image Alt&#8221; and &#8220;Link Rel&#8221;.<br />
3. Fixed some bugs. </p>
<p><a href="http://rubensargsyan.com/wordpress-plugin-useful-banner-manager/">Plugin Homepage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/wordpress-plugin-useful-banner-manager-new-1-1-version/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress plugin &#8220;UBM Premium&#8221;</title>
		<link>http://rubensargsyan.com/wordpress-plugin-ubm-premium/</link>
		<comments>http://rubensargsyan.com/wordpress-plugin-ubm-premium/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 12:18:35 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[banner manager]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[premium version]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=644</guid>
		<description><![CDATA[UBM Premium is the ultimate banner serving tool for the serious bloggers. Rotate banners based on performance, track outgoing clicks, control nofollow/dofollow and much more. The perfect solution for all affiliate marketers and webmasters. It is the premium version of WordPress plugin &#8220;Useful Banner Manager&#8220;. &#160; &#160; Additional features: count the impressions of the banners [...]]]></description>
			<content:encoded><![CDATA[<div style="display: inline-block"><a href="http://rubensargsyan.com/wp-content/uploads/2011/08/ubm-premium.png"><img class="size-full wp-image-685 alignleft" title="Useful Banner Manager Premium" src="http://rubensargsyan.com/wp-content/uploads/2011/08/ubm-premium.png" alt="Useful Banner Manager Premium" width="210" height="150" /></a>UBM Premium is the ultimate banner serving tool for the serious bloggers. Rotate banners based on performance, track outgoing clicks, control nofollow/dofollow and much more. The perfect solution for all affiliate marketers and webmasters.</p>
<p>It is the premium version of WordPress plugin &#8220;<a href="http://rubensargsyan.com/wordpress-plugin-useful-banner-manager/">Useful Banner Manager</a>&#8220;.</div>
<p><span id="more-644"></span><br />
&nbsp;</p>
<div id="attachment_665" class="wp-caption aligncenter" style="width: 510px"><a href="http://rubensargsyan.com/wp-content/uploads/2011/08/screenshot-1.png"><img class="size-full wp-image-665" title="Manage banners" src="http://rubensargsyan.com/wp-content/uploads/2011/08/screenshot-1.png" alt="Manage banners" width="500" height="356" /></a><p class="wp-caption-text">Manage banners</p></div>
<p>&nbsp;</p>
<h4><strong>Additional features:</strong></h4>
<ol style="margin-top: -5px;">
<li>count the impressions of the banners</li>
<li>count the clicks on the banners</li>
</ol>
<div></div>
<div id="attachment_666" class="wp-caption aligncenter" style="width: 510px"><a href="http://rubensargsyan.com/wp-content/uploads/2011/08/screenshot-2.png"><img class="size-full wp-image-666" title="Statistics" src="http://rubensargsyan.com/wp-content/uploads/2011/08/screenshot-2.png" alt="Statistics" width="500" height="143" /></a><p class="wp-caption-text">Statistics</p></div>
<p>&nbsp;</p>
<h4><strong>Price:</strong></h4>
<div style="font-size: 18px; margin-top: -7px;"><em>$14.99</em></div>
<h3><a href="http://wpplugins.com/plugin/931/ubm-premium/" rel="nofollow">Purchase from wpplugins.com</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/wordpress-plugin-ubm-premium/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Modify the categories from WordPress default widget &#8220;Categories&#8221;</title>
		<link>http://rubensargsyan.com/modify-the-categories-from-wordpress-default-widget-categories/</link>
		<comments>http://rubensargsyan.com/modify-the-categories-from-wordpress-default-widget-categories/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 17:16:34 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=624</guid>
		<description><![CDATA[I have a post about how to exclude the categories from WordPress default widget &#8220;Categories&#8221;. Now I&#8217;d like to bring to your attention how to modify the categories from WordPress default widget &#8220;Categories&#8221; for the users who probably doesn&#8217;t know WordPress coding so good. The solution is the following: add this code in the file [...]]]></description>
			<content:encoded><![CDATA[<p>I have a post about <a href="http://rubensargsyan.com/exclude-categories-from-the-default-widget-categories/" target="_blank">how to exclude the categories from WordPress default widget &#8220;Categories&#8221;</a>. Now I&#8217;d like to bring to your attention how to modify the categories from WordPress default widget &#8220;Categories&#8221; for the users who probably doesn&#8217;t know WordPress coding so good.<span id="more-624"></span> The solution is the following: add this code in the file functions.php of the using theme:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> modify_widget_categories<span style="color: #009900;">&#40;</span><span style="color: #000088;">$args</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$include</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;3,6,18&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// The IDs of the including categories</span>
  <span style="color: #000088;">$args</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;include&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$include</span> <span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #000088;">$args</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;hide_empty&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// If it is 0 it will show the empty categories as well</span>
&nbsp;
  <span style="color: #b1b100;">return</span> <span style="color: #000088;">$args</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;widget_categories_args&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;modify_widget_categories&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>You can find the full list of parameters to modify the widget categories here: <a href="http://codex.wordpress.org/Function_Reference/get_categories#Default_Usage" target="_blank">http://codex.wordpress.org/Function_Reference/get_categories#Default_Usage<br />
</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/modify-the-categories-from-wordpress-default-widget-categories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress plugin &#8220;Share Buttons Simple Use&#8221; new 1.2 version</title>
		<link>http://rubensargsyan.com/wordpress-plugin-share-buttons-simple-use-new-1-2-version/</link>
		<comments>http://rubensargsyan.com/wordpress-plugin-share-buttons-simple-use-new-1-2-version/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 20:16:40 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google plus]]></category>
		<category><![CDATA[new version]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[share buttons]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=608</guid>
		<description><![CDATA[The new version of WordPress plugin &#8220;Share Buttons Simple Use&#8221; 1.2 is created. The following updates have been done in this version: 1. Now you can choose the share buttons you want to be shown. 2. Add [ share_buttons_simple_use ] (without spaces) in any place of post(s) or page(s) where yo want the share buttons [...]]]></description>
			<content:encoded><![CDATA[<p>The new version of WordPress plugin &#8220;Share Buttons Simple Use&#8221; 1.2 is created. The following updates have been done in this version:<span id="more-608"></span></p>
<p>1. Now you can choose the share buttons you want to be shown.<br />
2. Add [ share_buttons_simple_use ] (without spaces) in any place of post(s) or page(s) where yo want the share buttons to be displayed.</p>
<p><a href="http://rubensargsyan.com/wordpress-plugin-share-buttons-simple-use/">Plugin Homepage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/wordpress-plugin-share-buttons-simple-use-new-1-2-version/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

