<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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>WordPress Ideas &#187; Tag: CMS - Recent Posts</title>
		<link>http://wordpress.org/ideas/tags/cms</link>
		<description>WordPress Ideas &#187; Tag: CMS - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 03:55:54 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://wordpress.org/ideas/rss/tags/cms" rel="self" type="application/rss+xml" />

		<item>
			<title>Seb0303 on "Pinboard"</title>
			<link>http://wordpress.org/ideas/topic/pinboard#post-24699</link>
			<pubDate>Tue, 30 Apr 2013 21:12:38 +0000</pubDate>
			<dc:creator>Seb0303</dc:creator>
			<guid isPermaLink="false">24699@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>I would like to have kind of a Pinboard commenting system for my website.</p>
<p>As I work with consulting and connecting people I would like a place where people can post their ideas and other can comment on them. But I do not like the way forums work. They make it complicated and not interesting.</p>
<p>I wish for a plug in, which is a pin board (like this <a href="http://static6.depositphotos.com/1011646/540/i/950/depositphotos_5407180-Pinboard.jpg" rel="nofollow">http://static6.depositphotos.com/1011646/540/i/950/depositphotos_5407180-Pinboard.jpg</a> ) People would then be able to post their ideas and the ideas would be pinned up there. And in case they write long texts, then you should be able to click on the pin and the pin would be expanded to show all of the text.</p>
<p>I kind of like the way this works <a href="http://plugins.flowcom.se/flowboard/demo/" rel="nofollow">http://plugins.flowcom.se/flowboard/demo/</a> but it is not exactly what I had in mind.
</p>]]></description>
					</item>
		<item>
			<title>bkjproductions on "Page List and Editor Preferences: Apply to All Users"</title>
			<link>http://wordpress.org/ideas/topic/page-list-and-editor-preferences-apply-to-all-users#post-23222</link>
			<pubDate>Wed, 14 Nov 2012 17:06:34 +0000</pubDate>
			<dc:creator>bkjproductions</dc:creator>
			<guid isPermaLink="false">23222@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>WordPress has the ability to keep the preferences of both Lists of Posts and the Page/Post Editor layout. For example, in a List view of Pages, you can hide or show columns using the <strong>Screen Options</strong> link at the top right. Likewise, when editing a Post or Page, you can control the visibility of the various Metaboxes on the page (such as Custom Fields). When using WP as a CMS, it would be great if the users all had the same preferences initially, in particular if you're using a plugin like Yoast's SEO and there are extra columns in a list of Pages or Posts---it can get quite confusing for the novice to see them. </p>
<p>This information is stored in the database as part of the wp_usermeta table. For example, there is a meta_key named closedpostboxes_page with serialized data that expresses the current state of the Post editor's closed boxes.</p>
<p>In the SQL example below, we have several Custom Post Types: Committees, Misc and Notes. So the <strong>meta_key</strong> "closedpostboxes_committees" has a <strong>meta_value</strong> with serialized data {wrapped: like, this}.</p>
<p>In theory it should be easy to set the preferences for all users to have the same settings, which would make WordPress more like a CMS, as all users would have the same general Dashboard look.</p>
<p>As a workaround for now, we can do a SQL INSERT command, if we know the user's ID.<br />
I'm hoping some clever developer can pick up on this and create a plugin for applying preferences from, say, the Admin, to all other users. Or maybe make it part of WP core?</p>
<p>Here is an example for user ID 8:<br />
<pre><code>INSERT INTO  wp_usermeta
( user_id, meta_key, meta_value)
VALUES
( 8, &#039;closedpostboxes_committees&#039;, &#039;a:7:{i:0;s:11:&#34;categorydiv&#34;;i:1;s:16:&#34;tagsdiv-post_tag&#34;;i:2;s:11:&#34;postexcerpt&#34;;i:3;s:10:&#34;wpseo_meta&#34;;i:4;s:10:&#34;postcustom&#34;;i:5;s:16:&#34;commentstatusdiv&#34;;i:6;s:13:&#34;trackbacksdiv&#34;;}&#039;),
( 8, &#039;closedpostboxes_dashboard&#039;, &#039;a:1:{i:0;s:11:&#34;w3tc_latest&#34;;}&#039;),
( 8, &#039;closedpostboxes_misc&#039;, &#039;a:5:{i:0;s:11:&#34;categorydiv&#34;;i:1;s:16:&#34;tagsdiv-post_tag&#34;;i:2;s:10:&#34;wpseo_meta&#34;;i:3;s:10:&#34;postcustom&#34;;i:4;s:16:&#34;commentstatusdiv&#34;;}&#039;),
( 8, &#039;closedpostboxes_notes&#039;, &#039;a:3:{i:0;s:16:&#34;commentstatusdiv&#34;;i:1;s:10:&#34;postcustom&#34;;i:2;s:11:&#34;commentsdiv&#34;;}&#039;),
( 8, &#039;closedpostboxes_page&#039;, &#039;a:3:{i:0;s:10:&#34;wpseo_meta&#34;;i:1;s:10:&#34;postcustom&#34;;i:2;s:18:&#34;rs_event_sectionid&#34;;}&#039;),
( 8, &#039;closedpostboxes_post&#039;, &#039;a:3:{i:0;s:10:&#34;postcustom&#34;;i:1;s:18:&#34;rs_event_sectionid&#34;;i:2;s:10:&#34;wpseo_meta&#34;;}&#039;),
( 8, &#039;edit_committees_per_page&#039;, &#039;200&#039;),
( 8, &#039;edit_misc_per_page&#039;, &#039;200&#039;),
( 8, &#039;edit_notes_per_page&#039;, &#039;200&#039;),
( 8, &#039;edit_page_per_page&#039;, &#039;200&#039;),
( 8, &#039;edit_post_per_page&#039;, &#039;200&#039;),
( 8, &#039;upload_per_page&#039;, &#039;200&#039;),
( 8, &#039;manageedit-committeescolumnshidden&#039;, &#039;a:16:{i:0;s:9:&#34;Thumbnail&#34;;i:1;s:10:&#34;categories&#34;;i:2;s:4:&#34;tags&#34;;i:3;s:9:&#34;post_type&#34;;i:4;s:11:&#34;wpseo-score&#34;;i:5;s:11:&#34;wpseo-title&#34;;i:6;s:14:&#34;wpseo-metadesc&#34;;i:7;s:13:&#34;wpseo-focuskw&#34;;i:8;s:0:&#34;&#34;;i:9;s:0:&#34;&#34;;i:10;s:0:&#34;&#34;;i:11;s:0:&#34;&#34;;i:12;s:0:&#34;&#34;;i:13;s:0:&#34;&#34;;i:14;s:0:&#34;&#34;;i:15;s:0:&#34;&#34;;}&#039;),
( 8, &#039;manageedit-misccolumnshidden&#039;, &#039;a:12:{i:0;s:9:&#34;post_type&#34;;i:1;s:9:&#34;thumbnail&#34;;i:2;s:11:&#34;wpseo-score&#34;;i:3;s:11:&#34;wpseo-title&#34;;i:4;s:14:&#34;wpseo-metadesc&#34;;i:5;s:13:&#34;wpseo-focuskw&#34;;i:6;s:0:&#34;&#34;;i:7;s:0:&#34;&#34;;i:8;s:0:&#34;&#34;;i:9;s:0:&#34;&#34;;i:10;s:0:&#34;&#34;;i:11;s:0:&#34;&#34;;}&#039;),
( 8, &#039;manageedit-notescolumnshidden&#039;, &#039;a:4:{i:0;s:9:&#34;Thumbnail&#34;;i:1;s:9:&#34;post_type&#34;;i:2;s:0:&#34;&#34;;i:3;s:0:&#34;&#34;;}&#039;),
( 8, &#039;manageedit-pagecolumnshidden&#039;, &#039;a:14:{i:0;s:9:&#34;Thumbnail&#34;;i:1;s:8:&#34;comments&#34;;i:2;s:9:&#34;post_type&#34;;i:3;s:11:&#34;wpseo-score&#34;;i:4;s:11:&#34;wpseo-title&#34;;i:5;s:14:&#34;wpseo-metadesc&#34;;i:6;s:13:&#34;wpseo-focuskw&#34;;i:7;s:0:&#34;&#34;;i:8;s:0:&#34;&#34;;i:9;s:0:&#34;&#34;;i:10;s:0:&#34;&#34;;i:11;s:0:&#34;&#34;;i:12;s:0:&#34;&#34;;i:13;s:0:&#34;&#34;;}&#039;),
( 8, &#039;manageedit-postcolumnshidden&#039;, &#039;a:14:{i:0;s:4:&#34;tags&#34;;i:1;s:9:&#34;post_type&#34;;i:2;s:9:&#34;thumbnail&#34;;i:3;s:11:&#34;wpseo-score&#34;;i:4;s:11:&#34;wpseo-title&#34;;i:5;s:14:&#34;wpseo-metadesc&#34;;i:6;s:13:&#34;wpseo-focuskw&#34;;i:7;s:0:&#34;&#34;;i:8;s:0:&#34;&#34;;i:9;s:0:&#34;&#34;;i:10;s:0:&#34;&#34;;i:11;s:0:&#34;&#34;;i:12;s:0:&#34;&#34;;i:13;s:0:&#34;&#34;;}&#039;),
( 8, &#039;manageuploadcolumnshidden&#039;, &#039;a:2:{i:0;s:8:&#34;comments&#34;;i:1;s:0:&#34;&#34;;}&#039;),
( 8, &#039;meta-box-order_committees&#039;, &#039;a:3:{s:4:&#34;side&#34;;s:75:&#34;submitdiv,pageparentdiv,categorydiv,tagsdiv-post_tag,authordiv,postimagediv&#34;;s:6:&#34;normal&#34;;s:72:&#34;postexcerpt,wpseo_meta,postcustom,commentstatusdiv,trackbacksdiv,slugdiv&#34;;s:8:&#34;advanced&#34;;s:0:&#34;&#34;;}&#039;),
( 8, &#039;meta-box-order_dashboard&#039;, &#039;a:4:{s:6:&#34;normal&#34;;s:82:&#34;custom_help_widget,w3tc_pagespeed,dashboard_right_now,DashboardRecentPostsExtended&#34;;s:4:&#34;side&#34;;s:11:&#34;w3tc_latest&#34;;s:7:&#34;column3&#34;;s:0:&#34;&#34;;s:7:&#34;column4&#34;;s:0:&#34;&#34;;}&#039;),
( 8, &#039;meta-box-order_misc&#039;, &#039;a:3:{s:4:&#34;side&#34;;s:75:&#34;submitdiv,categorydiv,tagsdiv-post_tag,postimagediv,pageparentdiv,authordiv&#34;;s:6:&#34;normal&#34;;s:72:&#34;postexcerpt,wpseo_meta,trackbacksdiv,postcustom,commentstatusdiv,slugdiv&#34;;s:8:&#34;advanced&#34;;s:0:&#34;&#34;;}&#039;),
( 8, &#039;meta-box-order_notes&#039;, &#039;a:3:{s:4:&#34;side&#34;;s:63:&#34;submitdiv,pageparentdiv,postimagediv,authordiv,commentstatusdiv&#34;;s:6:&#34;normal&#34;;s:42:&#34;postexcerpt,postcustom,commentsdiv,slugdiv&#34;;s:8:&#34;advanced&#34;;s:0:&#34;&#34;;}&#039;),
( 8, &#039;meta-box-order_page&#039;, &#039;a:3:{s:4:&#34;side&#34;;s:46:&#34;submitdiv,pageparentdiv,postimagediv,authordiv&#34;;s:6:&#34;normal&#34;;s:26:&#34;be_gallery_metabox,slugdiv&#34;;s:8:&#34;advanced&#34;;s:40:&#34;rs_event_sectionid,postcustom,wpseo_meta&#34;;}&#039;),
( 8, &#039;meta-box-order_post&#039;, &#039;a:3:{s:4:&#34;side&#34;;s:61:&#34;submitdiv,categorydiv,tagsdiv-post_tag,postimagediv,authordiv&#34;;s:6:&#34;normal&#34;;s:49:&#34;be_gallery_metabox,postexcerpt,postcustom,slugdiv&#34;;s:8:&#34;advanced&#34;;s:29:&#34;rs_event_sectionid,wpseo_meta&#34;;}&#039;),
( 8, &#039;metaboxhidden_committees&#039;, &#039;a:4:{i:0;s:10:&#34;wpseo_meta&#34;;i:1;s:16:&#34;commentstatusdiv&#34;;i:2;s:13:&#34;trackbacksdiv&#34;;i:3;s:7:&#34;slugdiv&#34;;}&#039;),
( 8, &#039;metaboxhidden_dashboard&#039;, &#039;a:2:{i:0;s:14:&#34;w3tc_pagespeed&#34;;i:1;s:11:&#34;w3tc_latest&#34;;}&#039;),
( 8, &#039;metaboxhidden_misc&#039;, &#039;a:6:{i:0;s:11:&#34;categorydiv&#34;;i:1;s:16:&#34;tagsdiv-post_tag&#34;;i:2;s:10:&#34;wpseo_meta&#34;;i:3;s:13:&#34;trackbacksdiv&#34;;i:4;s:16:&#34;commentstatusdiv&#34;;i:5;s:7:&#34;slugdiv&#34;;}&#039;),
( 8, &#039;metaboxhidden_notes&#039;, &#039;a:7:{i:0;s:13:&#34;pageparentdiv&#34;;i:1;s:12:&#34;postimagediv&#34;;i:2;s:16:&#34;commentstatusdiv&#34;;i:3;s:11:&#34;postexcerpt&#34;;i:4;s:10:&#34;postcustom&#34;;i:5;s:11:&#34;commentsdiv&#34;;i:6;s:7:&#34;slugdiv&#34;;}&#039;),
( 8, &#039;metaboxhidden_page&#039;, &#039;a:1:{i:0;s:7:&#34;slugdiv&#34;;}&#039;),
( 8, &#039;metaboxhidden_post&#039;, &#039;a:3:{i:0;s:7:&#34;slugdiv&#34;;i:1;s:18:&#34;rs_event_sectionid&#34;;i:2;s:10:&#34;wpseo_meta&#34;;}&#039;)</code></pre>]]></description>
					</item>
		<item>
			<title>Jack Tummers on "Better content blocks for CMS capabilities."</title>
			<link>http://wordpress.org/ideas/topic/better-content-blocks-for-cms-capabilities#post-22645</link>
			<pubDate>Wed, 08 Aug 2012 08:30:41 +0000</pubDate>
			<dc:creator>Jack Tummers</dc:creator>
			<guid isPermaLink="false">22645@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>I agree on all of this. Now I'm working on a large project with several content parts and using the secondary content block plugin. Works fine, but I fear the day the plugin is not working anymore... I really think this functionality has to be part of WP core.
</p>]]></description>
					</item>
		<item>
			<title>Will on "Schedule a post update"</title>
			<link>http://wordpress.org/ideas/topic/schedule-a-post-update#post-22415</link>
			<pubDate>Sat, 07 Jul 2012 11:17:55 +0000</pubDate>
			<dc:creator>Will</dc:creator>
			<guid isPermaLink="false">22415@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>I think would be nice if we could schedule a post update as a native feature of Wordpress.</p>
<p>Often Wordpress is been used as CMS. Most people that made this use sometimes need to schedule an update on a page or post.
</p>]]></description>
					</item>
		<item>
			<title>Pali Madra on "WordPress as a LMS"</title>
			<link>http://wordpress.org/ideas/topic/wordpress-as-a-lms#post-21302</link>
			<pubDate>Tue, 14 Feb 2012 12:51:42 +0000</pubDate>
			<dc:creator>Pali Madra</dc:creator>
			<guid isPermaLink="false">21302@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>In the spirit of Open Source Movement I purpose to develop a repository of tools which can help you create a WordPress based LMS. LMS means a Learning Management System.</p>
<p>As part of the program an LCMS (Learning Content Management System) section should be developed which can be used by educators to create content for a LMS.
</p>]]></description>
					</item>
		<item>
			<title>Pokale on "Wordpress Theme Revamp"</title>
			<link>http://wordpress.org/ideas/topic/wordpress-theme-revamp#post-21153</link>
			<pubDate>Thu, 26 Jan 2012 14:53:54 +0000</pubDate>
			<dc:creator>Pokale</dc:creator>
			<guid isPermaLink="false">21153@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>I also think that this is not the best idea. Why would I want to do this? </p>
<p>Ok, one has to learn the wordpress php codes but when you look at them they are pretty self-explanatory and not too hard to understand...
</p>]]></description>
					</item>
		<item>
			<title>mogito on "Better content blocks for CMS capabilities."</title>
			<link>http://wordpress.org/ideas/topic/better-content-blocks-for-cms-capabilities#post-20083</link>
			<pubDate>Mon, 29 Aug 2011 21:35:09 +0000</pubDate>
			<dc:creator>mogito</dc:creator>
			<guid isPermaLink="false">20083@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>what?<br />
1. You should have the screen option to turn any number of content blocks on.</p>
<p>2. These content blocks are EXACT replica's of the main content block including media buttons and formatting. You should be able to interact with these content blocks in the same way as the main content block.</p>
<p>2. There should be radio button options and template tags so technical and non technical users can specify where they would like to use these in the theme ( pages AND posts ).</p>
<p>3. The content blocks MUST be completely readable by RSS feeds. This is where current plugins fail most urgently. For example - if you have text in one content block and images in another content block - both should be picked up by your feed.</p>
<p>Why? because fafing around with "more" tags is tedious and NOT USER FRIENDLY. There are plugins, but these do not do the job. WordPress has come on leaps and bounds with regards to becoming a fully functioning CMS. Changes like this would help it along even further.
</p>]]></description>
					</item>
		<item>
			<title>pedrokoblitz on "Wordpress Theme Revamp"</title>
			<link>http://wordpress.org/ideas/topic/wordpress-theme-revamp#post-18967</link>
			<pubDate>Wed, 16 Mar 2011 15:00:21 +0000</pubDate>
			<dc:creator>pedrokoblitz</dc:creator>
			<guid isPermaLink="false">18967@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>You do not need to 'revamp' the theme system. All you need is to either use the RSS feeds which you can filter by category, author and tags or build a XML theme with your own queries.</p>
<p>If you use the feeds, you'll need to access them via curl or file_get_contents (whatever works). In both cases you can process the documents with php5 XLSTProcessor class.</p>
<p>Using functions like is_category() and is_frontpage() to build conditional queries, you can actually build a wp-xsl theme with just index.php, style.css and a bunch of xsl stylesheets.
</p>]]></description>
					</item>
		<item>
			<title>nbrungardt on "Simple Web Site Integration"</title>
			<link>http://wordpress.org/ideas/topic/simple-web-site-integration#post-18898</link>
			<pubDate>Sun, 06 Mar 2011 22:41:12 +0000</pubDate>
			<dc:creator>nbrungardt</dc:creator>
			<guid isPermaLink="false">18898@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>As a web designer I do see the Value in WordPress, but I am not a person who wants to develop code and take time away from the design just to integrate a current or future design into WordPress. </p>
<p>So I thought I have worked with and seen other CMS platforms that use Class="Editable" or something to that effect to integrate a site into the CMS, quite simple right!?</p>
<p>But the problems that come from such platforms as they are too simple and limited in what they can do. What I think would be great is to have a simple to use plug-in or Class integration tags to get a site onto the WordPress platform quicker and easier. Without all of the PHP mumbo jumbo that only Geeks and Developers want to look at. </p>
<p>Example:</p>
<p>&#60;html&#62;<br />
&#60;body&#62;<br />
&#60;div id="main" class="wp-content"&#62;<br />
&#60;div id="header" class="wp-header"&#62;<br />
&#60;/div&#62;<br />
&#60;div id="nav" class="wp-navigation"&#62;<br />
&#60;/div&#62;<br />
&#60;div id="article" class="wp-article"&#62;<br />
&#60;/div&#62;<br />
&#60;div id="aside" class="wp-aside"&#62;<br />
&#60;div id="footer" class="wp-footer"&#62;&#60;/div&#62;<br />
&#60;/div&#62;<br />
&#60;/div&#62;<br />
&#60;/body&#62;<br />
&#60;/html&#62;
</p>]]></description>
					</item>
		<item>
			<title>Jen Mylo on "Kinds of posts instead of just blog posts"</title>
			<link>http://wordpress.org/ideas/topic/kinds-of-posts-instead-of-just-blog-posts#post-18525</link>
			<pubDate>Sun, 19 Dec 2010 13:06:29 +0000</pubDate>
			<dc:creator>Jen Mylo</dc:creator>
			<guid isPermaLink="false">18525@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>Custom post types and custom taxonomies have already been implemented. You need to either register support in your theme or use a plugin to do so. </p>
<p>Post formats, allowing for different display style has been implemented in 3.1, which is in late beta and will be released within the next couple of weeks.
</p>]]></description>
					</item>

	</channel>
</rss>
