<?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>Comic Easel</title>
	<atom:link href="http://comiceasel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://comiceasel.com</link>
	<description>Plugin your WebComic</description>
	<lastBuildDate>Mon, 10 Jun 2013 06:25:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Place the chapter archive dropdown into the Easel menubar.</title>
		<link>http://comiceasel.com/2013/05/28/place-the-chapter-archive-dropdown-into-the-easel-menubar/</link>
		<comments>http://comiceasel.com/2013/05/28/place-the-chapter-archive-dropdown-into-the-easel-menubar/#comments</comments>
		<pubDate>Tue, 28 May 2013 07:48:05 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Comic Easel (Plugin)]]></category>
		<category><![CDATA[Easel (Theme)]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=457</guid>
		<description><![CDATA[This only works if you&#8217;re using the Easel theme, but this code will place the comic archive dropdown into the menubar if you want it there. You add this to your child theme&#8217;s functions.php Then you can skin / clean [&#8230;] <a class="more-link" href="http://comiceasel.com/2013/05/28/place-the-chapter-archive-dropdown-into-the-easel-menubar/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>This only works if you&#8217;re using the Easel theme, but this code will place the comic archive dropdown into the menubar if you want it there.</p>
<p>You add this to your child theme&#8217;s functions.php</p>
<pre class="brush: php; title: ; notranslate">
add_action('easel-menubar-after','mytheme_add_archive_dropdown_to_menubar');

function mytheme_add_archive_dropdown_to_menubar() {
	echo '&lt;div class=&quot;menubar-archive-dropdown&quot;&gt;';
	if (function_exists('ceo_comic_archive_jump_to_chapter')) ceo_comic_archive_jump_to_chapter();
	echo '&lt;/div&gt;';
}
</pre>
<p>Then you can skin / clean up the look with some extra CSS add this to your child theme&#8217;s style.css</p>
<pre class="brush: css; title: ; notranslate">
.menubar-archive-dropdown { float: right; display: inline-block; }
</pre>
<p>And there you have it, it will then display the comic archive chapter dropdown to the menubar with the Easel theme.</p>
<p>- Phil</p>
<p>Additional functionality added, the function now accepts two arguments, unhide hidden chapters (because they&#8217;re empty, i.e. show empty chapters) and you can exclude certain chapters from showing (comma separated)</p>
<pre class="brush: php; title: ; notranslate">
ceo_comic_archive_jump_to_chapter($unhide = false, $exclude = '') {
</pre>
<p>so the line in the function above would look something like this:</p>
<pre class="brush: php; title: ; notranslate">
if (function_exists('ceo_comic_archive_jump_to_chapter')) ceo_comic_archive_jump_to_chapter(true, '3,4,5');
</pre>
<p>Or you can just put ceo_comic_archive_jump_to_chapter() by itself without arguments and that will work fine, or even ceo_comic_archive_jump_to_chapter(true); by itself  if you wanted.  It&#8217;s all good.</p>
 <img src="http://comiceasel.com/?feed-stats-post-id=457" width="1" height="1" style="display: none;" /><div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://comiceasel.com/2013/05/28/place-the-chapter-archive-dropdown-into-the-easel-menubar/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2013/05/28/place-the-chapter-archive-dropdown-into-the-easel-menubar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding another custom taxonomy to your comics</title>
		<link>http://comiceasel.com/2013/05/17/adding-another-custom-taxonomy-to-your-comics/</link>
		<comments>http://comiceasel.com/2013/05/17/adding-another-custom-taxonomy-to-your-comics/#comments</comments>
		<pubDate>Fri, 17 May 2013 22:55:57 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Comic Easel (Plugin)]]></category>
		<category><![CDATA[Child Theme]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=429</guid>
		<description><![CDATA[So, you want to track all of the artists and which comics that they worked on. Then add this bit of code to your CHILD THEME&#8217;s functions.php file. The way this is written allows for yoururl.com/artist/artists-slug to display all of [&#8230;] <a class="more-link" href="http://comiceasel.com/2013/05/17/adding-another-custom-taxonomy-to-your-comics/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>So, you want to track all of the artists and which comics that they worked on. Then add this bit of code to your CHILD THEME&#8217;s functions.php file.</p>
<pre class="brush: php; title: ; notranslate">
$labels = array(
		'name' =&gt; __( 'Artists', 'comiceasel'),
		'singular_name' =&gt; __( 'Artist', 'comiceasel' ),
		'search_items' =&gt;  __( 'Search Artists', 'comiceasel' ),
		'popular_items' =&gt; __( 'Popular Artists', 'comiceasel' ),
		'all_items' =&gt; __( 'All Artists', 'comiceasel' ),
		'parent_item' =&gt; __( 'Parent Artist', 'comiceasel' ),
		'parent_item_colon' =&gt; __( 'Parent Artist:', 'comiceasel' ),
		'edit_item' =&gt; __( 'Edit Artist', 'comiceasel' ), 
		'update_item' =&gt; __( 'Update Artist', 'comiceasel' ),
		'add_new_item' =&gt; __( 'Add New Artist', 'comiceasel' ),
		'new_item_name' =&gt; __( 'New Artist Name', 'comiceasel' ),
		);

register_taxonomy('artists', 'comic', array(
			'hierarchical' =&gt; true,
			'public' =&gt; true,
			'labels' =&gt; $labels,
			'show_ui' =&gt; true,
			'query_var' =&gt; true,
			'show_tagcloud' =&gt; false,
			'rewrite' =&gt; array( 'slug' =&gt; 'artist', 'with_front' =&gt; true, 'feeds' =&gt; false ),
			));
			
register_taxonomy_for_object_type('artists', 'comic');	

add_action('comic-post-info', 'ceo_child_display_comic_artist_info');

function ceo_child_display_comic_artist_info() {
	global $post;
	if ($post-&gt;post_type == 'comic') {
		$before = '&lt;div class=&quot;comic-artists&quot;&gt;'.__('Artist','comiceasel').': ';
		$sep = ', ';
		$after = '&lt;/div&gt;';
		echo get_the_term_list( $post-&gt;ID, 'artists', $before, $sep, $after );
	}
}
</pre>
<p>The way this is written allows for yoururl.com/artist/artists-slug to display all of the comics that the taxonomy is associated with; This will also add another menu item under Comics -&gt; Artists  AND include the option in the comic editor to add them.   The above code also makes it act like &#8216;categories&#8217; .. if you want it to be more like tags and not have parent child relationships, you would change the &#8216;hierarchical&#8217; => true,  to &#8216;hierarchical&#8217; => false</p>
<p>If you wanted to add one for writers, just find EVERY (and I mean every) place it says artist and change it to writer, including the function names and function references. (remember you can&#8217;t have two functions with the same name in the code)</p>
 <img src="http://comiceasel.com/?feed-stats-post-id=429" width="1" height="1" style="display: none;" /><div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://comiceasel.com/2013/05/17/adding-another-custom-taxonomy-to-your-comics/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2013/05/17/adding-another-custom-taxonomy-to-your-comics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cast-page shortcode faq added</title>
		<link>http://comiceasel.com/2013/05/04/cast-page-shortcode-faq-added/</link>
		<comments>http://comiceasel.com/2013/05/04/cast-page-shortcode-faq-added/#comments</comments>
		<pubDate>Sat, 04 May 2013 11:29:04 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=416</guid>
		<description><![CDATA[cast-page shortcode faq added]]></description>
				<content:encoded><![CDATA[<p><a href="http://comiceasel.com/shortcodes/cast-page/">cast-page shortcode faq</a> added</p>
 <img src="http://comiceasel.com/?feed-stats-post-id=416" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2013/05/04/cast-page-shortcode-faq-added/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changelog 1.3.6 &#8211; Introducing Comic Easel &#8211; Import (bulk comic upload)</title>
		<link>http://comiceasel.com/2013/04/29/changelog-1-3-6-introducing-comic-easel-import-bulk-comic-upload/</link>
		<comments>http://comiceasel.com/2013/04/29/changelog-1-3-6-introducing-comic-easel-import-bulk-comic-upload/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 20:34:21 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[Comic Easel (Plugin)]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=342</guid>
		<description><![CDATA[in 1.3.6, the comic easel import was made. This is meh, largely untested except on my dev machine, but if you have the need to add a bunch of comics at a time; this is what you would use right [&#8230;] <a class="more-link" href="http://comiceasel.com/2013/04/29/changelog-1-3-6-introducing-comic-easel-import-bulk-comic-upload/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>in 1.3.6, the comic easel import was made.   This is meh, largely untested except on my dev machine, but if you have the need to add a bunch of comics at a time; this is what you would use right now.</p>
<p>The first release of the import uses the ComicPress naming convention for files, YYYY-MM-DD-title-of-comic.extension  </p>
<p>You FTP into your site, create a directory off of the root of your WordPress installation and name it &#8216;import&#8217;  &#8230; FTP the comics you want to import into that directory.  Create the chapter (or make sure it&#8217;s added) in the Comic -> Chapters section of the wp-admin and then.</p>
<p>Rinse repeat for set of comics, in each &#8216;chapter&#8217; you want to add.   If you only have a basic chapter made for all comics, don&#8217;t stress about it; you can still use that main chapter.</p>
<p>Like always, try not to overload your system&#8217;s processing by adding too many comics at once.. keep the importing at a min.  I suggest 20-30 comics at a time max for good solid hosting and 5-10 comics max if your hosting isn&#8217;t really that great.</p>
<p>NOTE: It will actually add comics that are set on the same date, just currently not modify the time on it and there&#8217;s a big change the image won&#8217;t get attached.. known bug on that so I just currently say don&#8217;t do it.</p>
 <img src="http://comiceasel.com/?feed-stats-post-id=342" width="1" height="1" style="display: none;" /><div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://comiceasel.com/2013/04/29/changelog-1-3-6-introducing-comic-easel-import-bulk-comic-upload/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2013/04/29/changelog-1-3-6-introducing-comic-easel-import-bulk-comic-upload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jetpack Mobile Theme &amp; Comic Easel (Revisited / Easier for non-coders)</title>
		<link>http://comiceasel.com/2013/04/25/jetpack-mobile-theme-comic-easel-revisited-easier-for-non-coders/</link>
		<comments>http://comiceasel.com/2013/04/25/jetpack-mobile-theme-comic-easel-revisited-easier-for-non-coders/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 08:43:00 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Jetpack]]></category>
		<category><![CDATA[Mobile Theme]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=339</guid>
		<description><![CDATA[With the addition of this plugin: Jetpack Mobile Theme Featured Images to the WordPress repository, it is now substantially easier to make Comic Easel work with Jetpack&#8217;s Mobile theme. Add that plugin, install it and activate it by going to [&#8230;] <a class="more-link" href="http://comiceasel.com/2013/04/25/jetpack-mobile-theme-comic-easel-revisited-easier-for-non-coders/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>With the addition of this plugin: <a href="http://wordpress.org/extend/plugins/jetpack-mobile-theme-featured-images/" target="_blank">Jetpack Mobile Theme Featured Images</a> to the WordPress repository, it is now substantially easier to make Comic Easel work with Jetpack&#8217;s Mobile theme.</p>
<p>Add that plugin, install it and activate it by going to the configure in Jetpack for mobile theme.</p>
<p>Then you make sure you have a sidebar-1 created in your theme.</p>
<p>In Easel, (future version will have this automatically) you edit the functions.php file and the section to edit looks like this:</p>
<pre class="brush: php; title: ; notranslate">
if (!function_exists('easel_register_sidebars')) {
	function easel_register_sidebars() {
		$widgets_list = array(
			array('id' =&gt; 'left-sidebar', 'name' =&gt; __('Left Sidebar', 'easel'), 'description' =&gt; __('The sidebar that appears to the left of the content.','easel')),
			array('id' =&gt; 'right-sidebar', 'name' =&gt; __('Right Sidebar', 'easel'), 'description' =&gt; __('The sidebar that appears to the right of the content.','easel')),
			array('id' =&gt; 'above-header', 'name' =&gt; __('Above Header', 'easel'), 'description' =&gt; __('This sidebar appears to above all of the site information.  This sidebar is not encased in CSS, you will need to create CSS for it.','easel')),
			array('id' =&gt; 'header', 'name' =&gt; __('Header', 'easel'), 'description' =&gt; __('This sidebar appears inside the #header block.','easel')),
			array('id' =&gt; 'menubar', 'name' =&gt; __('Menubar', 'easel'), 'description' =&gt; __('This sidebar is under the header and above the content-wrapper block','easel')),
			array('id' =&gt; 'over-blog', 'name' =&gt; __('Over Blog', 'easel'), 'description' =&gt; __('This sidebar appears over the blog within the #column .narrowcolumn','easel')),
			array('id' =&gt; 'under-blog', 'name' =&gt; __('Under Blog', 'easel'), 'description' =&gt; __('This sidebar appears under the blog within the #column .narrowocolumn','easel')),
			array('id' =&gt; 'footer', 'name' =&gt; __('Footer', 'easel'), 'description' =&gt; __('This sidebar is below the #content-wrapper block at the bottom of the page','easel'))
		);
</pre>
<p>You just add another entry at the bottom under the footer entry one, having a comma at the end of the footer line entry</p>
<p>This is the line to add: </p>
<pre class="brush: php; title: ; notranslate">
			array('id' =&gt; '1', 'name' =&gt; __('Jetpack Mobile Sidebar', 'easel'), 'description' =&gt; __('If the Jetpack Mobile theme is active it will use this sidebar.','easel'))
</pre>
<p>So now the widgets_list looks like this:</p>
<pre class="brush: php; title: ; notranslate">
		$widgets_list = array(
			array('id' =&gt; 'left-sidebar', 'name' =&gt; __('Left Sidebar', 'easel'), 'description' =&gt; __('The sidebar that appears to the left of the content.','easel')),
			array('id' =&gt; 'right-sidebar', 'name' =&gt; __('Right Sidebar', 'easel'), 'description' =&gt; __('The sidebar that appears to the right of the content.','easel')),
			array('id' =&gt; 'above-header', 'name' =&gt; __('Above Header', 'easel'), 'description' =&gt; __('This sidebar appears to above all of the site information.  This sidebar is not encased in CSS, you will need to create CSS for it.','easel')),
			array('id' =&gt; 'header', 'name' =&gt; __('Header', 'easel'), 'description' =&gt; __('This sidebar appears inside the #header block.','easel')),
			array('id' =&gt; 'menubar', 'name' =&gt; __('Menubar', 'easel'), 'description' =&gt; __('This sidebar is under the header and above the content-wrapper block','easel')),
			array('id' =&gt; 'over-blog', 'name' =&gt; __('Over Blog', 'easel'), 'description' =&gt; __('This sidebar appears over the blog within the #column .narrowcolumn','easel')),
			array('id' =&gt; 'under-blog', 'name' =&gt; __('Under Blog', 'easel'), 'description' =&gt; __('This sidebar appears under the blog within the #column .narrowocolumn','easel')),
			array('id' =&gt; 'footer', 'name' =&gt; __('Footer', 'easel'), 'description' =&gt; __('This sidebar is below the #content-wrapper block at the bottom of the page','easel')),
			array('id' =&gt; '1', 'name' =&gt; __('Jetpack Mobile Sidebar', 'easel'), 'description' =&gt; __('If the Jetpack Mobile theme is active it will use this sidebar.','easel'))
		);
</pre>
<p>This is for the Easel theme remember, you will need to ask or figure out out what it takes with whatever theme you are using to create another sidebar.</p>
<p>This will add in the appearance -> widgets section the Jetpack Mobile Sidebar section., go to the Appearance -> Widgets and drag the Comic Easel -> Latest Comics widget to that sidebar. </p>
<p>Now when someone visits your site with their mobile, they will get the regular blog posts and under that will be a list of the last 5 latest comics that are available. </p>
<p>Note:  It will take from ALL chapters / storylines. </p>
<p>Additional Note: The Navigation prev and next inside jetpack will navigate ALL comics, regardless of chapters.</p>
 <img src="http://comiceasel.com/?feed-stats-post-id=339" width="1" height="1" style="display: none;" /><div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://comiceasel.com/2013/04/25/jetpack-mobile-theme-comic-easel-revisited-easier-for-non-coders/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2013/04/25/jetpack-mobile-theme-comic-easel-revisited-easier-for-non-coders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementation of a &#8216;secondary&#8217; featured image to use as a custom &#8216;teaser&#8217; image.</title>
		<link>http://comiceasel.com/2013/04/22/implementation-of-a-secondary-featured-image-to-use-as-a-custom-teaser-image/</link>
		<comments>http://comiceasel.com/2013/04/22/implementation-of-a-secondary-featured-image-to-use-as-a-custom-teaser-image/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 04:24:10 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[Comic Easel (Plugin)]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=336</guid>
		<description><![CDATA[Purpose: To display a &#8216;teaser&#8217; image of your comic that is used in the thumbnail widget (and anywhere else you might want to code it in, like the home page) that is a custom image &#8211; not the thumbnail of [&#8230;] <a class="more-link" href="http://comiceasel.com/2013/04/22/implementation-of-a-secondary-featured-image-to-use-as-a-custom-teaser-image/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>Purpose: To display a &#8216;teaser&#8217; image of your comic that is used in the thumbnail widget (and anywhere else you might want to code it in, like the home page) that is a custom image &#8211; not the thumbnail of your comic.</p>
<p>Basically it&#8217;s support for this plugin: <a title="Multiple Post Thumbnails" href="http://wordpress.org/extend/plugins/multiple-post-thumbnails/" target="_blank">Multiple Post Thumbnails</a></p>
<p>What it does is add another &#8216;add image&#8217; box to the right column in the comic post editor, which asks you to upload an image just like the way the featured image (adding a comic) works.   Soon as it uploads you click on &#8220;use as secondary image&#8221;.</p>
<p>There is an option in the thumbnail widget that you checkmark to say &#8220;use secondary image if it&#8217;s available&#8221;, in order for the widget to decide to use it or not at that point.</p>
<p>- Phil</p>
<p>(you still need to add something to your functions.php to make it work, new Easel not yet released will have it automatically)</p>
<pre class="brush: php; title: ; notranslate">
if (class_exists('MultiPostThumbnails')) {
	new MultiPostThumbnails(
		array(
			'label' =&gt; 'Secondary Image',
			'id' =&gt; 'secondary-image',
			'post_type' =&gt; 'comic'
			));
	add_image_size('secondary-image');
}
</pre>
 <img src="http://comiceasel.com/?feed-stats-post-id=336" width="1" height="1" style="display: none;" /><div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://comiceasel.com/2013/04/22/implementation-of-a-secondary-featured-image-to-use-as-a-custom-teaser-image/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2013/04/22/implementation-of-a-secondary-featured-image-to-use-as-a-custom-teaser-image/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Comic Easel 1.3.3 introduces two new [comic-archive] shortcode arguments</title>
		<link>http://comiceasel.com/2013/04/15/comic-easel-1-3-3-introduces-two-new-comic-archive-shortcode-arguments/</link>
		<comments>http://comiceasel.com/2013/04/15/comic-easel-1-3-3-introduces-two-new-comic-archive-shortcode-arguments/#comments</comments>
		<pubDate>Mon, 15 Apr 2013 21:49:13 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[Comic Easel (Plugin)]]></category>
		<category><![CDATA[Information]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=330</guid>
		<description><![CDATA[Well they are not new, but with the shortcode comic-archive you can now change the &#8216;type&#8217; of archive display it is. with the argument list= you can have different types of archives then the standard list=2 and list=3 were added [&#8230;] <a class="more-link" href="http://comiceasel.com/2013/04/15/comic-easel-1-3-3-introduces-two-new-comic-archive-shortcode-arguments/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>Well they are not new, but with the shortcode comic-archive you can now change the &#8216;type&#8217; of archive display it is.</p>
<p>with the argument list=  you can have different types of archives then the standard</p>
<p>list=2 and list=3 were added with 1.3.2/1.3.3 of Comic Easel, which also accepts the order=asc/desc argument with it.</p>
<p>list=2 </p>
<p>List #2 displays your archives in a linkable list by year which links you can click on for what year of the archives you want to view.</p>
<p>List #3 is the same as list #2 but instead of seperating by years, it displays all of the years on the page it was added to; then the list underneith</p>
<p>[ comic-archive list=3 order=asc ]</p>
<p>Give it a try <img src='http://comiceasel.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  (no spaces after the [ and before the ])</p>
 <img src="http://comiceasel.com/?feed-stats-post-id=330" width="1" height="1" style="display: none;" /><div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://comiceasel.com/2013/04/15/comic-easel-1-3-3-introduces-two-new-comic-archive-shortcode-arguments/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2013/04/15/comic-easel-1-3-3-introduces-two-new-comic-archive-shortcode-arguments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Comic Easel 1.0.20 &amp; 1.0.21</title>
		<link>http://comiceasel.com/2012/12/31/comic-easel-1-0-20/</link>
		<comments>http://comiceasel.com/2012/12/31/comic-easel-1-0-20/#comments</comments>
		<pubDate>Mon, 31 Dec 2012 23:47:27 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[Comic Easel (Plugin)]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=321</guid>
		<description><![CDATA[Two new options, Open Comic With Lightbox - This is a checkmark in the comic post editor which will allow whatever lightbox plugin you are using to open the comic up to display the full size of it if you [&#8230;] <a class="more-link" href="http://comiceasel.com/2012/12/31/comic-easel-1-0-20/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>Two new options,</p>
<p>Open Comic With Lightbox<br />
- This is a checkmark in the comic post editor which will allow whatever lightbox plugin you are using to open the comic up to display the full size of it if you are using an extra large image.</p>
<p>Changing the comic slug name.<br />
- The URL line /comic/ can be changed to whatever slug name you want to use now.  NOTE: You cannot use a slug that already exists as a slug in your tags/posts/chapters/categories &#8211; etc.</p>
<p>1.0.21 &#8211; >added a checker to see if the slug was already in use and inform you in the config section, as well as additional checks to see if the value is &#8216;comic&#8217; or empty on preexisting installation.</p>
 <img src="http://comiceasel.com/?feed-stats-post-id=321" width="1" height="1" style="display: none;" /><div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://comiceasel.com/2012/12/31/comic-easel-1-0-20/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2012/12/31/comic-easel-1-0-20/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Comic Easel 1.0.17 -&gt; 1.0.18</title>
		<link>http://comiceasel.com/2012/11/15/comic-easel-1-0-17-1-0-18/</link>
		<comments>http://comiceasel.com/2012/11/15/comic-easel-1-0-17-1-0-18/#comments</comments>
		<pubDate>Thu, 15 Nov 2012 13:08:41 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[Comic Easel (Plugin)]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=314</guid>
		<description><![CDATA[Fixed a few bugs including a couple bad notices that showed up with navigation. In 1.0.18 added transcript abililty pretty much like ComicPress has You can use the transcript shortcode [ transcript ] &#60;- without the spaces, it has a [&#8230;] <a class="more-link" href="http://comiceasel.com/2012/11/15/comic-easel-1-0-17-1-0-18/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>Fixed a few bugs including a couple bad notices that showed up with navigation.</p>
<p>In 1.0.18 added transcript abililty pretty much like ComicPress has</p>
<p>You can use the transcript shortcode [ transcript ] &lt;- without the spaces, it has a display = parameter you can use, with 3 options, raw/br/styled</p>
<p>example:</p>
<p>[ transcript display=raw ]</p>
<p>* remember no spaces separating the brackets</p>
<p>raw = no special HTML or javascripts elements or anything, it will output like a straight line of text</p>
<p>br = will add BR&#8217;s where they are needed but still again no html, css or javascript</p>
<p>styled = (default) will display nicely with some CSS html and javascript</p>
 <img src="http://comiceasel.com/?feed-stats-post-id=314" width="1" height="1" style="display: none;" /><div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://comiceasel.com/2012/11/15/comic-easel-1-0-17-1-0-18/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2012/11/15/comic-easel-1-0-17-1-0-18/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Comic Easel 1.0.13</title>
		<link>http://comiceasel.com/2012/07/11/comic-easel-1-0-13/</link>
		<comments>http://comiceasel.com/2012/07/11/comic-easel-1-0-13/#comments</comments>
		<pubDate>Wed, 11 Jul 2012 23:31:37 +0000</pubDate>
		<dc:creator>Frumph</dc:creator>
				<category><![CDATA[Comic Easel (Plugin)]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://comiceasel.com/?p=287</guid>
		<description><![CDATA[Added option to disable the related comics section if theme has it implemented Fixed the comic post type archive from failing Fixed a bunch of translation codes in widgets Added clear:both to #comic-wrap]]></description>
				<content:encoded><![CDATA[<p>Added option to disable the related comics section if theme has it implemented<br />
Fixed the comic post type archive from failing<br />
Fixed a bunch of translation codes in widgets<br />
Added clear:both to #comic-wrap</p>
 <img src="http://comiceasel.com/?feed-stats-post-id=287" width="1" height="1" style="display: none;" /><div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://comiceasel.com/2012/07/11/comic-easel-1-0-13/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://comiceasel.com/2012/07/11/comic-easel-1-0-13/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.347 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-06-18 15:04:58 -->
