<?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>Sorrowful Unfounded &#187; WordPress</title>
	<atom:link href="http://sorrowfulunfounded.com/category/code/wordpress-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://sorrowfulunfounded.com</link>
	<description>Official Weblog of Christopher Clarke</description>
	<lastBuildDate>Tue, 09 Mar 2010 05:11:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress eBook Export</title>
		<link>http://sorrowfulunfounded.com/2010/01/wordpress-ebook-export/</link>
		<comments>http://sorrowfulunfounded.com/2010/01/wordpress-ebook-export/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 06:44:51 +0000</pubDate>
		<dc:creator>Chris Clarke</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://sorrowfulunfounded.com/?p=557</guid>
		<description><![CDATA[This is a very very early development release of a plugin for WordPress to export a category as an eBook, currently only ePub. Some features don&#8217;t work and many are not implemented.
Anyway, use at your own risk.
Download Plugin
Git repository.
]]></description>
			<content:encoded><![CDATA[<p>This is a very very early development release of a plugin for WordPress to export a category as an eBook, currently only ePub. Some features don&#8217;t work and many are not implemented.</p>
<p>Anyway, use at your own risk.<br />
<a href="http://upload.sorrowfulunfounded.com/misc/wp_ebook_export.zip">Download Plugin</a></p>
<p><a href="http://github.com/chrisclarke/eBook-Export-Plugin-for-WordPress">Git repository</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sorrowfulunfounded.com/2010/01/wordpress-ebook-export/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tutorial &#8211; Table of Contents in a Page</title>
		<link>http://sorrowfulunfounded.com/tutorials/wordpress/table-of-contents-page</link>
		<comments>http://sorrowfulunfounded.com/tutorials/wordpress/table-of-contents-page#comments</comments>
		<pubDate>Wed, 23 Sep 2009 08:05:35 +0000</pubDate>
		<dc:creator>Chris Clarke</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://sorrowfulunfounded.com/?p=482</guid>
		<description><![CDATA[This tutorial will explain how to add a table of contents to a generic WordPress page. Our table of contents will be a list of posts in chronological order. This tutorial is a follow up to a comment on the post for my WordPress Table of Contents Widget by Ashley who indicated that she would [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial will explain how to add a table of contents to a generic <a href="http://wordpress.org/">WordPress</a> page. Our table of contents will be a list of posts in chronological order. This tutorial is a follow up to a comment on the post for my <a href="http://sorrowfulunfounded.com/wp-toc-widget/">WordPress Table of Contents Widget</a> by Ashley who indicated that she would be interested in the capability of having a table of contents in a page rather then the sidebar.<span id="more-482"></span></p>
<p>WordPress has the wonderful capability of allowing specific pages to have custom templates. In the initial version of <a href="http://muses-success.info/">Muse&#8217;s Success</a>, we exploited this capability along with custom fields to generate the listing directory and listing detail pages.</p>
<p>Firstly, I would like you to make a copy of your default pages template. This file is usually named page.php, and located in /wp-content/themes/[name of your theme]/ directory of WordPress installation. Name this copy, table_of_contents.php, and open it in your favourite text editor.</p>
<p>Add the following to line 1 of your table_of_contents.php. It needs to be the first thing in your file.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/* Template Name: Table of Contents
*/</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><strong>Find:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;p class=&quot;serif&quot;&gt;Read the rest of this page &amp;raquo;&lt;/p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>This line may be slightly different, your basically looking for an instance of &lt;?php the_content(&#8216;&#8230;&#8217;). ?&gt; Don&#8217;t worry about what the single parameter, if any.</p>
<p><strong>Immediately after add:</strong></p>
<p>This is the basic code to output post titles in chronological order. You can make slight variations of this, and it in general depends on how you&#8217;ve been naming your posts. In my experience, most authors are placing the chapter number and title in their WordPress post titles, so this example is geared towards these authors, but I will show some alternatives at the end of this tutorial.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$post_save</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$category_id</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'toc_category_id'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$toc</span> <span style="color: #339933;">=</span> get_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'numberposts=-1&amp;category='</span><span style="color: #339933;">.</span><span style="color: #000088;">$category_id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;order=ASC&amp;orderby=date'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$toc</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;&lt;br /&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endforeach</span><span style="color: #339933;">;</span> <span style="color: #000088;">$post</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post_save</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><strong>Create the Page</strong></p>
<p>Now, we have to create a WordPress page. You can do this by selecting Pages -> Add New in your WordPress Dashboard Menu. It&#8217;s up to you what you name your page, and what you write in the content area, but I would recommend the title is that of your book, and your content area contains a short introduction to your story (like what you would have on the blurb of a print book). </p>
<p><strong>Select the Custom Template</strong></p>
<p>Before you publish your page, we have a few special things we need to do to make the table of contents appear. You&#8217;ll need to select the Table of Contents template in the Attributes section (lower right) of the Add Page page as depicted.</p>
<p><img src="http://sorrowfulunfounded.com/wp-content/uploads/2009/09/attributes.jpg" alt="Attributes" title="Attributes" width="291" height="292" class="alignnone size-full wp-image-510" /></p>
<p><strong>Set the Custom Field</strong></p>
<p>Next, we have to add a custom field. Custom fields can be added below the page content area. Name your custom field &#8220;toc_category_id&#8221; and set the value to the ID number of the category containing your posts. You can find the ID out by going to the Edit Categories (Dashboard menu -> Posts -> Categories) page, and clicking Edit under the category containing the posts that comprise your story. On the Edit Category page, take a look at your address bar, and you&#8217;ll see the text &#038;cat_ID=. The number after the equals sign is your category ID.</p>
<p><img src="http://sorrowfulunfounded.com/wp-content/uploads/2009/09/custom_field.jpg" alt="custom_field" title="custom_field" width="529" height="236" class="alignnone size-full wp-image-512" /></p>
<p>Click Add Custom Field, and then Publish, and you&#8217;re done. If all went well, when you view the page you just created, you should see your new table of contents.</p>
<p><strong>Using an ordered list instead</strong></p>
<p>Earlier, I mentioned that there are other variations of the code that are suited to different post naming schemes. The one I showed earlier was a basic one title after another list using linebreaks.</p>
<p>If you are one who names their posts solely the name of your chapter with no number, you might like to use an ordered list to automatically add the chapter number for you.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;ol&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$post_save</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$category_id</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'toc_category_id'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$toc</span> <span style="color: #339933;">=</span> get_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'numberposts=-1&amp;category='</span><span style="color: #339933;">.</span><span style="color: #000088;">$category_id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;order=ASC&amp;orderby=date'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$toc</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;li&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;&lt;/li&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endforeach</span><span style="color: #339933;">;</span> <span style="color: #000088;">$post</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post_save</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/ol&gt;</pre></td></tr></table></div>

<p>Those knowing CSS (and respecting semantics) but naming their chapters with number and name might also want to use the above code, but use CSS to hide the numbers in visual browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://sorrowfulunfounded.com/tutorials/wordpress/table-of-contents-page/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Web Fiction Table of Contents Widget for WordPress</title>
		<link>http://sorrowfulunfounded.com/wp-toc-widget</link>
		<comments>http://sorrowfulunfounded.com/wp-toc-widget#comments</comments>
		<pubDate>Sat, 05 Sep 2009 16:57:12 +0000</pubDate>
		<dc:creator>Chris Clarke</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://sorrowfulunfounded.com/?p=467</guid>
		<description><![CDATA[Download Plugin v0.2
Compatible with WordPress 2.8 and up.
This is a sidebar widget for WordPress that will generate a table of contents from the posts located within a specified category.
It is intended for authors of web fiction but should be useful to anyone using posts to write a book or similar in a serialized format.
The plugin [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/web-fiction-table-of-contents-widget/"><strong>Download Plugin v0.2</strong></a><br />
Compatible with <a href="http://wordpress.org">WordPress 2.8</a> and up.</p>
<p>This is a sidebar widget for WordPress that will generate a table of contents from the posts located within a specified category.</p>
<p>It is intended for authors of web fiction but should be useful to anyone using posts to write a book or similar in a serialized format.</p>
<p>The plugin appears to work, but this is an early release. Your feedback (and bug reports/suggestions) is very much appreciated.</p>
<p><strong>Sample Web Fiction Using Ths Widget</strong></p>
<ul>
<li><a href="http://darkthorn.sorrowfulunfounded.com/2008/05/chapter/">The Inheritance Afflictions</a> by <a href="http://darkthorn.sorrowfulunfounded.com/">Darkthorn</a></li>
</ul>
<p><strong>Installation:</strong></p>
<ol>
<li>Upload the `web-fiction-table-of-contents-widget` directory to the `/wp-content/plugins/` directory</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress</li>
<li>The widget will now show up under Appearance/Widgets ready for use.</li>
</ol>
<p><strong>Support:</strong><br />
<a href="http://muses-success.info/forums/viewforum/6">Muse&#8217;s Success Forums</a><span id="more-467"></span></p>
<p><strong>Widget Configuration Options</strong><br />
The widget has several options which you can use to customise its behaviour. The<br />
following is an outline of these options.</p>
<p><strong><em>Title</em></strong><br />
By default we name the Table of Contents simply Table of Contents. This isn&#8217;t<br />
always desirable however, so you can use this option to change Table of Contents<br />
to anything you wish.</p>
<p><em><strong>Category Containing Chapters</strong></em><br />
The plugin expects you to have a category dedicated to only containing the<br />
chapters of your story/novel/etc. You need to tell the widget from which<br />
category to generate the table of contents.</p>
<p><strong><em>Format of Chapter Title</em></strong><br />
There are numerous ways authors have of naming their posts. Some use just the<br />
chapter title. Others, use Chapter 33 with no title. Others still will specify<br />
both like 33. Name.</p>
<table>
<tr>
<th>If you name your posts like this:</th>
<th>Use this:</th>
</tr>
<tr>
<td>Name of Chapter {ex: Heroes}</td>
<td>{num}. {title}</td>
</tr>
<tr>
<td>Chapter NUM (ex: Chapter 33)</td>
<td>{title}</td>
</tr>
<tr>
<td>NUM. Title (ex: 33. Heroes)  </td>
<td>{title}</td>
</tr>
<tr>
<td>Chapter NUM: Title {Chapter 33: Heroes}</td>
<td>You should rename your chapters.</td>
</tr>
</table>
<p>{title} is the post&#8217;s title.<br />
{num} is an auto-generated chapter number.</p>
<p><em><strong>Display TOC in Chapters Only</strong></em><br />
You can choose to only display the table of contents on posts that are a part<br />
of the category specified under Category Containing Chapters. This is especially<br />
useful for authors with multiple stories on a single WordPress install as they<br />
can choose to only display the table of contents related to the chapter<br />
currently being read.</p>
<p><strong><em>Use Ordered List</em></strong><br />
You should feel comfortable with CSS if you tick this option.</p>
<p>You can choose to use an ordered list rather then the default unordered list. If<br />
you choose this option, you will want to set &#8220;Format of Chapter Title&#8221; to only<br />
{title}, and probably wish to edit your stylesheet since WordPress themes don&#8217;t<br />
by default style a sidebar widget that use&#8217;s the ol tag. </p>
<p><strong>Donate!</strong><br />
If this plugin is useful to you, please consider donating.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----<br />
"><br />
<input type="image" src="https://www.paypal.com/en_AU/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypal.com/en_AU/i/scr/pixel.gif" width="1" height="1"><br />
</form>
]]></content:encoded>
			<wfw:commentRss>http://sorrowfulunfounded.com/wp-toc-widget/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
