<?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>Thu, 20 May 2010 07:56:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</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>Mihalytch</dc:creator>
				<category><![CDATA[WordPress]]></category>

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