<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Tag: upscale. custom post types - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/upscale-custom-post-types</link>
		<description>Support Forum - Tag: upscale. custom post types - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 20 Jun 2013 00:39:28 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/tags/upscale-custom-post-types" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Can&#039;t create custom post types"</title>
			<link>http://www.kriesi.at/support/topic/cant-create-custom-post-types#post-29556</link>
			<pubDate>Sun, 16 Oct 2011 08:25:07 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">29556@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that the update fixed the error :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dmaguire on "Can&#039;t create custom post types"</title>
			<link>http://www.kriesi.at/support/topic/cant-create-custom-post-types#post-29500</link>
			<pubDate>Fri, 14 Oct 2011 22:38:23 +0000</pubDate>
			<dc:creator>dmaguire</dc:creator>
			<guid isPermaLink="false">29500@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Upgraded and it works just fine now. Thanks for your help and great support.&#60;/p&#62;
&#60;p&#62;Let me know when you upgrade the framework for that Javascript to CSS mega menu degradation issue ; ) &#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;David Maguire
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "Can&#039;t create custom post types"</title>
			<link>http://www.kriesi.at/support/topic/cant-create-custom-post-types#post-29469</link>
			<pubDate>Fri, 14 Oct 2011 07:22:20 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">29469@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! Which version of upscale are you using? Thats a framework error that should have been fixed some time ago, so if you update to the latest version using custom post types should no longer be a problem :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dmaguire on "Can&#039;t create custom post types"</title>
			<link>http://www.kriesi.at/support/topic/cant-create-custom-post-types#post-29421</link>
			<pubDate>Thu, 13 Oct 2011 17:05:09 +0000</pubDate>
			<dc:creator>dmaguire</dc:creator>
			<guid isPermaLink="false">29421@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Bump. Any help would be greatly appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dmaguire on "Can&#039;t create custom post types"</title>
			<link>http://www.kriesi.at/support/topic/cant-create-custom-post-types#post-29247</link>
			<pubDate>Tue, 11 Oct 2011 20:57:27 +0000</pubDate>
			<dc:creator>dmaguire</dc:creator>
			<guid isPermaLink="false">29247@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi again,&#60;/p&#62;
&#60;p&#62;In working with the upScale I have the requirement to add custom post types. I have tried a few ways including:&#60;/p&#62;
&#60;p&#62;- two separate &#34;post type UI&#34; plugins that let you create custom post types from a wordpress admin user interface&#60;br /&#62;
- and hand coding a function for a post type into the functions.php file&#60;/p&#62;
&#60;p&#62;All the ways I have tried result in the same error. When you go into the custom post type to create a post everything is fine until you hit &#34;Publish&#34; at which point all I get in the browser is a blank page with &#34;-1&#34; in the top left corner. Once I navigate away from this page I can return to the post type and the created post appears as a draft, however when I click into the post and hit publish I get the same error. &#60;/p&#62;
&#60;p&#62;I have pasted the function I coded into the functions.php below and any help would be appreciated in pointing me in the right direction as to how to create custom post types within this theme (and possibly the wider Avia Framework). &#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
register_post_type('Bulletins', array(	'label' =&#38;gt; 'OFM Bulletins','description' =&#38;gt; '','public' =&#38;gt; true,'show_ui' =&#38;gt; true,'show_in_menu' =&#38;gt; true,'capability_type' =&#38;gt; 'post','hierarchical' =&#38;gt; false,'rewrite' =&#38;gt; array('slug' =&#38;gt; ''),'query_var' =&#38;gt; true,'supports' =&#38;gt; array('title','editor','excerpt','trackbacks','custom-fields','comments','revisions','thumbnail','author','page-attributes',),'labels' =&#38;gt; array (&#60;br /&#62;
  'name' =&#38;gt; 'OFM Bulletins',&#60;br /&#62;
  'singular_name' =&#38;gt; 'OFM Bulletin',&#60;br /&#62;
  'menu_name' =&#38;gt; 'OFM Bulletins',&#60;br /&#62;
  'add_new' =&#38;gt; 'Add OFM Bulletin',&#60;br /&#62;
  'add_new_item' =&#38;gt; 'Add New OFM Bulletin',&#60;br /&#62;
  'edit' =&#38;gt; 'Edit',&#60;br /&#62;
  'edit_item' =&#38;gt; 'Edit OFM Bulletin',&#60;br /&#62;
  'new_item' =&#38;gt; 'New OFM Bulletin',&#60;br /&#62;
  'view' =&#38;gt; 'View OFM Bulletin',&#60;br /&#62;
  'view_item' =&#38;gt; 'View OFM Bulletin',&#60;br /&#62;
  'search_items' =&#38;gt; 'Search OFM Bulletins',&#60;br /&#62;
  'not_found' =&#38;gt; 'No OFM Bulletins Found',&#60;br /&#62;
  'not_found_in_trash' =&#38;gt; 'No OFM Bulletins Found in Trash',&#60;br /&#62;
  'parent' =&#38;gt; 'Parent OFM Bulletin',&#60;br /&#62;
),) );&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
