<?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>Vantage Point of Queens &#187; WordPress</title>
	<atom:link href="http://blog.nydd.org/topic/tech/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nydd.org</link>
	<description>Art, Hack and Rock'n Roll</description>
	<lastBuildDate>Wed, 16 Jun 2010 13:59:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress Plugin for Meetup Everywhere</title>
		<link>http://blog.nydd.org/2010/06/wordpress-plugin-for-meetup-everywhere/</link>
		<comments>http://blog.nydd.org/2010/06/wordpress-plugin-for-meetup-everywhere/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 13:43:10 +0000</pubDate>
		<dc:creator>beatak</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.nydd.org/?p=321</guid>
		<description><![CDATA[				This allows you to control Meetup Everywhere from your Wordpress site!
				Please be noted that this is still very experimental.
				Go to Github: beatak / Meetup-Everywhere-WordPress-plugin
				Requirement
				
				WordPress 2.9 and after?
				
				Version 0.1
				Todos
				
				Clean up widget&#8217;s visual (it should look similar to the official widget?)
				Organize config pages
				Reflect changes on config page to Meetup Everywhere
				
]]></description>
			<content:encoded><![CDATA[				<p>This allows you to control Meetup Everywhere from your Wordpress site!</p>
				<p>Please be noted that this is still very experimental.</p>
				<p><strong>Go to Github: <a href="http://github.com/beatak/Meetup-Everywhere-WordPress-plugin">beatak / Meetup-Everywhere-WordPress-plugin</a></strong></p>
				<p><strong>Requirement</strong></p>
				<ul>
				<li>WordPress 2.9 and after?</li>
				</ul>
				<p><strong>Version 0.1</strong><br />
				<em>Todos</em></p>
				<ul>
				<li>Clean up widget&#8217;s visual (it should look similar to the official widget?)</li>
				<li>Organize config pages</li>
				<li>Reflect changes on config page to Meetup Everywhere</li>
				</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.nydd.org/2010/06/wordpress-plugin-for-meetup-everywhere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ブログロールを導入</title>
		<link>http://blog.nydd.org/2008/07/%e3%83%96%e3%83%ad%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e5%b0%8e%e5%85%a5/</link>
		<comments>http://blog.nydd.org/2008/07/%e3%83%96%e3%83%ad%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e5%b0%8e%e5%85%a5/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 05:26:27 +0000</pubDate>
		<dc:creator>beatak</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[japanese]]></category>

		<guid isPermaLink="false">http://blog.nydd.org/?p=15</guid>
		<description><![CDATA[				思い立って blogroll を入れてみました。ただ wp.Vicuna ではデフォルトで blog roll は使われないのか知らん？調べてみました。2.5 以降は widget という仕組みになっているのかな？今日はとりあえず調べない。以前のバージョンの解決方法などを参考にしつつ（Vicunaテーマでブログロールを表示する際の不具合）、今回採用した簡単な方法は…
				
				Theme Editor で Sidebar (sidebar.php) を編集。
				
&#60;dt&#62;Links&#60;/dt&#62;
&#60;dd&#62;
&#9;&#60;ul&#62;&#60;?php get_links_list(); ?&#62;&#60;/ul&#62;
&#60;/dd&#62;

				
				上記コードで呼び出されている get_links_list を grep して、/wp-includes/deprecated.php にて発見（deprecated って…）。
				deprecated.php を編集
				
// Display the category name
//echo '  &#60;li id="linkcat-' . $cat-&#62;term_id . '" class="linkcat"&#62;&#60;h2&#62;' .
apply_filters('link_category', $cat-&#62;name ) . "&#60;/h2&#62;\n\t&#60;ul&#62;\n";

// Call get_links() with all the appropriate params
get_links($cat-&#62;term_id, '&#60;li&#62;', "&#60;/li&#62;", "\n", true, 'name', [...]]]></description>
			<content:encoded><![CDATA[				<p>思い立って blogroll を入れてみました。ただ wp.Vicuna ではデフォルトで blog roll は使われないのか知らん？調べてみました。2.5 以降は widget という仕組みになっているのかな？今日はとりあえず調べない。以前のバージョンの解決方法などを参考にしつつ（<a href="http://wpmemo.vox.com/library/post/shunirrorg---wordpressme221でサイドバーにリンクを表示する.html">Vicunaテーマでブログロールを表示する際の不具合</a>）、今回採用した簡単な方法は…</p>
				<ol>
				<li>Theme Editor で Sidebar (sidebar.php) を編集。
				<pre><code>
&lt;dt&gt;Links&lt;/dt&gt;
&lt;dd&gt;
&#9;&lt;ul&gt;&lt;?php get_links_list(); ?&gt;&lt;/ul&gt;
&lt;/dd&gt;
</code></pre>
				</li>
				<li>上記コードで呼び出されている get_links_list を grep して、/wp-includes/deprecated.php にて発見（deprecated って…）。</li>
				<li>deprecated.php を編集
				<pre><code>
// Display the category name
//echo '  &lt;li id="linkcat-' . $cat-&gt;term_id . '" class="linkcat"&gt;&lt;h2&gt;' .
apply_filters('link_category', $cat-&gt;name ) . "&lt;/h2&gt;\n\t&lt;ul&gt;\n";

// Call get_links() with all the appropriate params
get_links($cat-&gt;term_id, '&lt;li&gt;', "&lt;/li&gt;", "\n", true, 'name', false);

// Close the last category
//echo "\n\t&lt;/ul&gt;\n&lt;/li&gt;\n";
echo "\n&lt;/li&gt;\n";
</pre>
				<p></code></li>
				</ol>
				<p>とこんな感じになりました。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nydd.org/2008/07/%e3%83%96%e3%83%ad%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%ab%e3%82%92%e5%b0%8e%e5%85%a5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
