<?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>Mihalytch personal blog &#187; WordPress</title>
	<atom:link href="http://mihalytch.org.ua/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://mihalytch.org.ua</link>
	<description>Все о высоких технологиях</description>
	<lastBuildDate>Mon, 05 Dec 2011 16:05:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Как отключить замену кавычек в WordPress</title>
		<link>http://mihalytch.org.ua/wordpress/otkluchit-zamenu-kavychek-v-wp.html</link>
		<comments>http://mihalytch.org.ua/wordpress/otkluchit-zamenu-kavychek-v-wp.html#comments</comments>
		<pubDate>Mon, 11 Jan 2010 19:29:33 +0000</pubDate>
		<dc:creator>mihal</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://mihalytch.org.ua/?p=231</guid>
		<description><![CDATA[WordPress заменяет, например, двойные кавычки &#8220;текст&#8221; на «текст». С одинарными кавычками таже история. В принципе, они выглядят более привлекательно, но [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress заменяет, например, двойные кавычки &#8220;текст&#8221; на «текст». С одинарными кавычками таже история. В принципе, они выглядят более привлекательно, но лишь до того момента, как дело касается постинга кода на нашем блоге.</p>
<p>Чтобы отключить замену кавычек в файл functions.php, который находится в папке вашей текущей темы, нужно вставить следующий код:</p>
<pre class="brush: php; title: ; notranslate">
if ( function_exists('remove_filter') ) {
    # Отключим замену кавычек в тексте записей и страниц
    remove_filter('the_content', 'wptexturize');
    # Отключим замену кавычек в заголовках записей и страниц
    remove_filter('the_title', 'wptexturize');
    # Отключим замену кавычек в тексте комментариев
    remove_filter('comment_text', 'wptexturize');
}</pre>
<p>Также вы можете установить плагин, выполняющий аналогичную задачу, например, <a target="_blank" rel="nofollow" href="http://mihalytch.org.ua/goto//go/http://wordpress.org/extend/plugins/sem-unfancy-quote/"  target="_blank">Unfancy Quote</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mihalytch.org.ua/wordpress/otkluchit-zamenu-kavychek-v-wp.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

