<?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>テクニカル備忘録 &#187; arthemia</title>
	<atom:link href="http://hotmenu.jp/tech/?cat=41&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://hotmenu.jp/tech</link>
	<description>wordpressのことMacのこと…</description>
	<lastBuildDate>Thu, 30 Jul 2015 07:48:14 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>arthemiaのサムネイルにリンクを設定</title>
		<link>http://hotmenu.jp/tech/?p=177</link>
		<comments>http://hotmenu.jp/tech/?p=177#comments</comments>
		<pubDate>Sun, 22 Aug 2010 12:54:29 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[arthemia]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[サムネイル]]></category>
		<category><![CDATA[リンク]]></category>

		<guid isPermaLink="false">http://hotmenu.jp/tech/?p=177</guid>
		<description><![CDATA[　ほっとメニューというサイトのarthemiaのサムネイルはカスタムフィールドを入力しないでも、記事の一番はじめの写真を取得して勝手にサムネイルを作るよう設定というか、カスタマイズしてあるのですが、そのせいでサムネイルから記事へのリンクが外れていました。
 arthemiaのindex.phpの
[php]
 
[/php]
を以下のように改変
[php]
]]></description>
				<content:encoded><![CDATA[<p>　<a href="http://hotmenu.jp" target="_blank">ほっとメニュー</a>というサイトのarthemiaのサムネイルはカスタムフィールドを入力しないでも、記事の一番はじめの写真を取得して勝手にサムネイルを作るよう設定というか、カスタマイズしてあるのですが、そのせいでサムネイルから記事へのリンクが外れていました。<span id="more-177"></span></p>
<p> arthemiaのindex.phpの<br />
[php]
<div class="left"><?php echo the_qf_get_thumb_one('num=0&#038;width=180&#038;crop_w=120&#038;crop_h=120'); ?> </div>
<p>[/php]<br />
を以下のように改変<br />
[php]
<div class="title"><a href="<?php the_permalink() ?>&#8221; rel=&#8221;bookmark&#8221;><?php echo the_qf_get_thumb_one('num=0&#038;width=180&#038;crop_w=120&#038;crop_h=120'); ?></a></div>
<p>[/php]</p>
<p>成功しました！<br />
<img src="http://hotmenu.jp/tech/wp-content/uploads/2010/08/sum.jpg" alt="" title="sum" width="300" height="300" class="alignnone size-full wp-image-178" /></p>
<p>アーカイブとかも変えなくっちゃ。</p>
]]></content:encoded>
			<wfw:commentRss>http://hotmenu.jp/tech/?feed=rss2&#038;p=177</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>arthemiaのfooter…most commentうんぬんの削除</title>
		<link>http://hotmenu.jp/tech/?p=167</link>
		<comments>http://hotmenu.jp/tech/?p=167#comments</comments>
		<pubDate>Sat, 21 Aug 2010 13:58:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[arthemia]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[arth]]></category>
		<category><![CDATA[footer.php]]></category>
		<category><![CDATA[フッタ]]></category>

		<guid isPermaLink="false">http://hotmenu.jp/tech/?p=167</guid>
		<description><![CDATA[arthemiaのフッタにある「Most Commented」はfooter.phpに直接記述されているためウィジェット等の設定で消せません。
しょうがないんで(^^)実力行使で下記をカットしてしまいました。
[php]

]]></description>
				<content:encoded><![CDATA[<p>arthemiaのフッタにある「Most Commented」はfooter.phpに直接記述されているためウィジェット等の設定で消せません。<br />
しょうがないんで(^^)実力行使で下記をカットしてしまいました。<span id="more-167"></span><br />
[php]</p>
<ul><?php $result = $wpdb->get_results(&#8220;SELECT comment_count,ID,post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 5&#8243;); 	foreach ($result as $topfive) { 	$postid = $topfive->ID; 	$title = $topfive->post_title; 	$commentcount = $topfive->comment_count;  	if ($commentcount != 0) { ?>
<li><a href="<?php echo get_permalink($postid); ?>&#8221; title=&#8221;<?php echo $title ?>&#8220;><?php echo $title ?></a></li>
<p> 	<?php } } ?>
</ul>
<p>[/php]</p>
<p>で、消えました。<br />
<img src="http://hotmenu.jp/tech/wp-content/uploads/2010/08/kieta.jpg" alt="" title="kieta" width="570" height="343" class="alignnone size-full wp-image-171" /><br />
今回はそんだけ</p>
]]></content:encoded>
			<wfw:commentRss>http://hotmenu.jp/tech/?feed=rss2&#038;p=167</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
