<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>kots blog &#187; SMO</title>
	<atom:link href="http://www.kots.jp/blog/archives/category/smo/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kots.jp/blog</link>
	<description>SEMやWebマーケティングの事柄を中心にまとめたブログ。ECサイトを中心に、プロモーションに磨きをかけられるよう奮闘中。</description>
	<lastBuildDate>Thu, 29 Jul 2010 11:59:44 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kots.jp/blog/archives/category/smo/feed" />
	<atom:link rel='hub' href='http://www.kots.jp/blog/?pushpress=hub'/>
		<item>
		<title>ソーシャル・マーチャンダイジング</title>
		<link>http://www.kots.jp/blog/archives/2644</link>
		<comments>http://www.kots.jp/blog/archives/2644#comments</comments>
		<pubDate>Mon, 25 Jan 2010 14:18:26 +0000</pubDate>
		<dc:creator>kots</dc:creator>
				<category><![CDATA[SMO]]></category>
		<category><![CDATA[ソーシャルメディア]]></category>

		<guid isPermaLink="false">http://www.kots.jp/blog/?p=2644</guid>
		<description><![CDATA[株式会社セブン＆アイ・ホールディングス の「プレミアムライフ向上委員会」による、 自社のソーシャルメディアサイト を利用した、PB商品の開発です。 改めて聞くと、「消費者（顧客）の声を反映させて～」というのも、 それ自体は特に目新しさを感じることではないのかも知れませんが、 実際にそういった『声』を反映させていくというのは、かなり課題があることと思います。 何かしらの販売・営業会社 とかでも、実際の営業スタッフの意見をしっかりと取り入れるだけでもかなりシビアなことが多いと思います。 今回の「プレミアムライフ向上委員会」 さんについては、 「ソーシャルメディアサイト」を活用 されるということで、今後の動向に興味が惹かれます。 現状で、もろもろのソーシャルメディアなど含め、 ユーザー（顧客）が発言 を行うということは、少し前よりもその行動自体も変わってきているように思いますし、 企業としての販促 はもちろんですが、 そういった企業姿勢も含めたエンゲージメント に対しての基盤構築 というのも、やはり大切な要素 になっていくように思います。 “ソーシャルメディアを活用した「セブンプレミアム」の商品開発～第一弾「ひとくちポテトコロッケ」を発売” 顧客参加型サイトの活用によるマーチャンダイジングは、これをさらに進化させて、「売り手」、「作り手」に「使い手」も加えるものであり、メーカー、小売、生活者が三位一体となった、いわば「ソーシャル・マーチャンダイジング」と言えるものである。 No related posts.


No related posts.]]></description>
		<wfw:commentRss>http://www.kots.jp/blog/archives/2644/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kots.jp/blog/archives/2644" />
	</item>
		<item>
		<title>WordPress で、各ページごとにmeta name=&#8221;description&#8221; を自動に設置する方法（記述）</title>
		<link>http://www.kots.jp/blog/archives/2465</link>
		<comments>http://www.kots.jp/blog/archives/2465#comments</comments>
		<pubDate>Wed, 06 Jan 2010 16:04:30 +0000</pubDate>
		<dc:creator>kots</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.kots.jp/blog/?p=2465</guid>
		<description><![CDATA[プラグイン とかでも、「meta name=&#8221;description&#8221;」を挿入できるものがありましたが、 各ページ 別で任意のものが記述できるものが見当たらず…。 使用しているthemes の、「header.php」に以下↓を記述すると、 各ページ（投稿記事）の最初に記述されている内容を、自動で「meta name=&#8221;description&#8221;」に挿入してくれます。 ======================================== &#60;?php if ( is_single() ) { // 単独記事ページの場合 ?&#62; &#60;?php if ($post-&#62;post_excerpt){ ?&#62; &#60;meta name=&#8221;description&#8221; content=&#8221;&#60;?php echo $post-&#62;post_excerpt; ?&#62;&#8221; /&#62; &#60;?php } else { $summary = strip_tags($post-&#62;post_content); $summary = str_replace(&#8220;\n&#8221;,&#8221;", $summary); $summary = str_replace(&#8220;\r&#8221;,&#8221;", $summary); $summary = mb_substr($summary, 0, 100). &#8220;&#8230;&#8221;; ?&#62; &#60;meta name=&#8221;description&#8221; content=&#8221;&#60;?php [...]


Related posts:<ol><li><a href='http://www.kots.jp/blog/archives/3826' rel='bookmark' title='Permanent Link: WordPress で、各ページごとにmeta name=&quot;description&quot; を自動に設置する方法（記述）'>WordPress で、各ページごとにmeta name=&quot;description&quot; を自動に設置する方法（記述）</a></li>
<li><a href='http://www.kots.jp/blog/archives/3567' rel='bookmark' title='Permanent Link: MicroformatsとRDFaのhReviewを比較'>MicroformatsとRDFaのhReviewを比較</a></li>
<li><a href='http://www.kots.jp/blog/archives/3554' rel='bookmark' title='Permanent Link: RDFa テスト'>RDFa テスト</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.kots.jp/blog/archives/2465/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kots.jp/blog/archives/2465" />
	</item>
	</channel>
</rss>
