<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Комментарии: Убираем ненужный текст из атрибута title для ссылок категорий</title>
	<atom:link href="http://wordpressinside.ru/tips/list-categories-title/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpressinside.ru/tips/list-categories-title/</link>
	<description>все про CMS Wordpress</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:29:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Автор: Tod</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-7791</link>
		<dc:creator>Tod</dc:creator>
		<pubDate>Wed, 11 Jan 2012 19:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-7791</guid>
		<description>Андрей, посмотрите статью как добавить текст &lt;a href=&quot;http://tods-blog.com.ua/seo-smo/seo/improve-category/&quot; rel=&quot;nofollow&quot;&gt;описания в категории wordpress&lt;/a&gt; блога, возможно там найдете ответ на свой вопрос. Дабы описание не выводилось в функции wp_list_categories есть какой-то параметр, уже точно не вспомню, смотрите кодекс вордпресс.</description>
		<content:encoded><![CDATA[<p>Андрей, посмотрите статью как добавить текст <a href="http://tods-blog.com.ua/seo-smo/seo/improve-category/" rel="nofollow">описания в категории wordpress</a> блога, возможно там найдете ответ на свой вопрос. Дабы описание не выводилось в функции wp_list_categories есть какой-то параметр, уже точно не вспомню, смотрите кодекс вордпресс.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Андрей</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-7776</link>
		<dc:creator>Андрей</dc:creator>
		<pubDate>Mon, 09 Jan 2012 18:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-7776</guid>
		<description>А как убрать всплывающий заголовок над названием рубрики в сайдбаре? На Вашем сайте над рубрикой отображается только название, а на странице самой рубрики уже идет вступительный текст. Как сделать, чтобы этот текст не отображался весь?</description>
		<content:encoded><![CDATA[<p>А как убрать всплывающий заголовок над названием рубрики в сайдбаре? На Вашем сайте над рубрикой отображается только название, а на странице самой рубрики уже идет вступительный текст. Как сделать, чтобы этот текст не отображался весь?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Mnemonic_13</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-7675</link>
		<dc:creator>Mnemonic_13</dc:creator>
		<pubDate>Tue, 20 Dec 2011 23:28:54 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-7675</guid>
		<description>спасибо за материал! 
Мне для блога нужно было полностью убрать атрибут title из ссылки
решение с переопределением функции wp_list_categories по ссылке ниже. 
http://stackoverflow.com/questions/2405437/removing-title-from-wp-list-categories

function wp_list_categories_remove_title_attributes($output) {
    $output = preg_replace(&#039;` title=&quot;(.+)&quot;`&#039;, &#039;&#039;, $output);
    return $output;
}
add_filter(&#039;wp_list_categories&#039;, &#039;wp_list_categories_remove_title_attributes&#039;);</description>
		<content:encoded><![CDATA[<p>спасибо за материал!<br />
Мне для блога нужно было полностью убрать атрибут title из ссылки<br />
решение с переопределением функции wp_list_categories по ссылке ниже.<br />
<a href="http://stackoverflow.com/questions/2405437/removing-title-from-wp-list-categories" rel="nofollow">http://stackoverflow.com/questions/2405437/removing-title-from-wp-list-categories</a></p>
<p>function wp_list_categories_remove_title_attributes($output) {<br />
    $output = preg_replace(&#8216;` title=&raquo;(.+)&raquo;`&#8217;, &raquo;, $output);<br />
    return $output;<br />
}<br />
add_filter(&#8216;wp_list_categories&#8217;, &#8216;wp_list_categories_remove_title_attributes&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Vov_chik</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-4651</link>
		<dc:creator>Vov_chik</dc:creator>
		<pubDate>Fri, 13 May 2011 06:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-4651</guid>
		<description>Уже разобрался ! Надо написать так:
&#039; , &#039;&#187;&quot;&gt;&#039; , $categoriesVar );
$categoriesVar = str_replace(&quot;&lt;/a&gt;&quot; , &#039;&lt;/a&gt;&#039; , $categoriesVar );
echo $categoriesVar;
?&gt;
Спасибо большое! Статья помогла!</description>
		<content:encoded><![CDATA[<p>Уже разобрался ! Надо написать так:<br />
&#8216; , &#8216;&raquo;&raquo;&gt;&#8217; , $categoriesVar );<br />
$categoriesVar = str_replace(&laquo;&raquo; , &#8216;&#8216; , $categoriesVar );<br />
echo $categoriesVar;<br />
?&gt;<br />
Спасибо большое! Статья помогла!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Vov_chik</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-4650</link>
		<dc:creator>Vov_chik</dc:creator>
		<pubDate>Fri, 13 May 2011 06:16:37 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-4650</guid>
		<description>Здравствуйте! В функции wp_list_pages есть возможность перед выводом непосредственной названия страницы вставлять необходимый html код  с помощью link_before:
&lt;?php
  wp_list_pages(&#039;link_before=&amp;title_li=&amp;include=18&amp;link_after=&#039;);
?&gt;
Возможно ли тоже сделать для функции  wp_list_categories ? И как?</description>
		<content:encoded><![CDATA[<p>Здравствуйте! В функции wp_list_pages есть возможность перед выводом непосредственной названия страницы вставлять необходимый html код  с помощью link_before:<br />
&lt;?php<br />
  wp_list_pages(&#039;link_before=&amp;title_li=&amp;include=18&amp;link_after=&#8217;);<br />
?&gt;<br />
Возможно ли тоже сделать для функции  wp_list_categories ? И как?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: alina</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-4465</link>
		<dc:creator>alina</dc:creator>
		<pubDate>Wed, 27 Apr 2011 11:20:46 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-4465</guid>
		<description>спасибо, все получилось!:)</description>
		<content:encoded><![CDATA[<p>спасибо, все получилось!:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Киноман</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-3428</link>
		<dc:creator>Киноман</dc:creator>
		<pubDate>Tue, 04 Jan 2011 00:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-3428</guid>
		<description>Отредактировал 2 строчки файла classes.php (/wp-includes)и получилось как и задумывалось.
if ( $use_desc_for_title == 1 &#124;&#124; empty($category-&gt;description) )
			$link .= &#039;title=&quot;&#039; . sprintf(__( &#039;%s&#039; ), $cat_name) . &#039;&quot;&#039;;</description>
		<content:encoded><![CDATA[<p>Отредактировал 2 строчки файла classes.php (/wp-includes)и получилось как и задумывалось.<br />
if ( $use_desc_for_title == 1 || empty($category-&gt;description) )<br />
			$link .= &#8216;title=&raquo;&#8216; . sprintf(__( &#8216;%s&#8217; ), $cat_name) . &#8216;&raquo;&#8216;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Korvin204</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-3186</link>
		<dc:creator>Korvin204</dc:creator>
		<pubDate>Sun, 21 Nov 2010 04:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-3186</guid>
		<description>Можно отредактировать файл classes.php (/wp-includes).
Строка:
$link .= &#039;title=&quot;&#039; . sprintf(__( &#039;View all posts filed under %s&#039; ), $cat_name) . &#039;&quot;&#039;;</description>
		<content:encoded><![CDATA[<p>Можно отредактировать файл classes.php (/wp-includes).<br />
Строка:<br />
$link .= &#8216;title=&raquo;&#8216; . sprintf(__( &#8216;View all posts filed under %s&#8217; ), $cat_name) . &#8216;&raquo;&#8216;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Tod</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-2453</link>
		<dc:creator>Tod</dc:creator>
		<pubDate>Tue, 05 Oct 2010 15:25:23 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-2453</guid>
		<description>Damian, о том как убрать эти надписи я и написал в статье, читаем внимательно. Разными их делать в принципе никакого смысла нет.</description>
		<content:encoded><![CDATA[<p>Damian, о том как убрать эти надписи я и написал в статье, читаем внимательно. Разными их делать в принципе никакого смысла нет.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Damian</title>
		<link>http://wordpressinside.ru/tips/list-categories-title/comment-page-1/#comment-2448</link>
		<dc:creator>Damian</dc:creator>
		<pubDate>Mon, 04 Oct 2010 10:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressinside.ru/?p=760#comment-2448</guid>
		<description>А есть какие-то ещё варианты как можно убрать &quot;Просмотреть все записи в рубрике...&quot;? Насколько я знаю, поисковики, особенно Google, очень любят эти тайтлы в ссылках. И хотелось бы сделать их разными, то есть без повторяющейся &quot;Просмотреть все записи в рубрике...&quot;</description>
		<content:encoded><![CDATA[<p>А есть какие-то ещё варианты как можно убрать &laquo;Просмотреть все записи в рубрике&#8230;&raquo;? Насколько я знаю, поисковики, особенно Google, очень любят эти тайтлы в ссылках. И хотелось бы сделать их разными, то есть без повторяющейся &laquo;Просмотреть все записи в рубрике&#8230;&raquo;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

