{"id":8547,"date":"2010-03-29T06:48:24","date_gmt":"2010-03-29T06:48:24","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/wp-columns\/"},"modified":"2011-03-02T08:20:27","modified_gmt":"2011-03-02T08:20:27","slug":"wp-columns","status":"closed","type":"plugin","link":"https:\/\/wordpress.org\/plugins\/wp-columns\/","author":5909755,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.1","stable_tag":"1.1","tested":"3.1.4","requires":"2.7","requires_php":"","requires_plugins":"","header_name":"WP Columns","header_author":"Semantica Software B.V.","header_description":"","assets_banners_color":"","last_updated":"2011-03-02 08:20:27","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"http:\/\/wordpress.org\/extend\/plugins\/wp-columns\/","header_author_uri":"http:\/\/software.semantica.com\/","rating":5,"author_block_rating":0,"active_installs":200,"downloads":21473,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":"1"},"assets_icons":[],"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0","1.1"],"block_files":[],"assets_screenshots":{"screenshot-2.png":{"filename":"screenshot-2.png","revision":"1538860","resolution":"2","location":"plugin"},"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1538860","resolution":"1","location":"plugin"}},"screenshots":{"1":"WP Columns settings page","2":"WP Columns in action"}},"plugin_section":[],"plugin_tags":[1099,854,4036,8397,1477],"plugin_category":[41],"plugin_contributors":[82329],"plugin_business_model":[],"class_list":["post-8547","plugin","type-plugin","status-closed","hentry","plugin_tags-column","plugin_tags-columns","plugin_tags-layout","plugin_tags-magazine","plugin_tags-newspaper","plugin_category-communication","plugin_contributors-tsuijten","plugin_committers-tsuijten"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/wp-columns.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/wp-columns\/trunk\/screenshot-1.png?rev=1538860","caption":"WP Columns settings page"},{"src":"https:\/\/ps.w.org\/wp-columns\/trunk\/screenshot-2.png?rev=1538860","caption":"WP Columns in action"}],"raw_content":"<!--section=description-->\n<p>There are similar plugins but they did not provide the ease of use I wanted.<\/p>\n\n<p>Creating columns is super easy, just include the column separator text in your page or post (by default <code>\/---\/<\/code>, configurable in the WP Column Settings page).<\/p>\n\n<p>HTML code will be generated with various CSS classes so you can easily style the columns in your Stylesheet.<\/p>\n\n<p><strong>Example<\/strong><\/p>\n\n<p>The following text in your page or post:<\/p>\n\n<pre><code>This text will be in the first column.\n\/---\/\nThis text will be in the second column.\n\/---\/\nThis text will be in the third column.\n<\/code><\/pre>\n\n<p>Will result in the following HTML code:<\/p>\n\n<pre><code>&lt;div class=\"wpcolumn-wrapper wpcolumn-wrapper-3\"&gt;\n&lt;div class=\"wpcolumn wpcolumn-1 wpcolumn-first\"&gt;This text will be in the first column.&lt;\/div&gt;\n&lt;div class=\"wpcolumn wpcolumn-2 wpcolumn-other\"&gt;This text will be in the second column.&lt;\/div&gt;\n&lt;div class=\"wpcolumn wpcolumn-3 wpcolumn-last\"&gt;This text will be in the third column.&lt;\/div&gt;\n&lt;div class=\"wpcolumn-clearfix\"&gt;&lt;\/div&gt;\n&lt;\/div&gt;\n<\/code><\/pre>\n\n<p>Using the various CSS classes assigned to the columns and the columns-wrapper you can style different number of columns in different ways.<\/p>\n\n<p>The column separator text as well as the CSS class prefix can be customized in the WP Columns Settings Panel (see screenshots).<\/p>\n\n<p>This CSS was used to accomplish the example seen in the screenshots section:<\/p>\n\n<pre><code>.wpcolumn-clearfix {\n    clear: both;\n}\n.wpcolumn-wrapper-3 .wpcolumn {\n    float: left;\n    margin: 10px 4% 15px 0;\n    width: 46%;\n}\n.wpcolumn-wrapper-3 .wpcolumn-last {\n    margin-right: 0;\n}\n.wpcolumn-wrapper-3 .wpcolumn-1 {\n    color:#888888;\n    font-family:'Lucida Grande',Verdana,Arial,sans-serif;\n    font-size:16px;\n    float: none;\n    width: auto;\n}\n<\/code><\/pre>\n\n<!--section=installation-->\n<ol>\n<li>Upload <code>wpcolumns.php<\/code> to the <code>\/wp-content\/plugins\/<\/code> directory<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt>Is this plugin supported?<\/dt>\n<dd><p>Yes, just send me an e-mail and I will see to your enhancement request \/ bug report as soon as possible.<\/p><\/dd>\n<dt>I don't want to see the column separator text when the plugin is disabled.<\/dt>\n<dd><p>If you set the column separator to something like <code>&lt;!-- column --&gt;<\/code> the separator will not be visible when the WP Columns plugin is not activated.<\/p>\n\n<p><em>Please note that the separator text will not be visible Wysiwyg editor<\/em><\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.1<\/h4>\n\n<p>Added an option to realize that content before the first and after the last separator will not be part of the columns. \nExample: With the following content, <code>a<\/code> and <code>d<\/code> will not be part of the columns when the option is selected and you will end up with two columns for <code>b<\/code> and <code>c<\/code><\/p>\n\n<pre><code>a\n\/---\/\nb\n\/---\/\nc\n\/---\/\nd\n<\/code><\/pre>\n\n<p>If you have this option enable and you want include <code>a<\/code>, <code>b<\/code>, <code>c<\/code> and <code>d<\/code> as a column you must use tho following content:<\/p>\n\n<pre><code>\/---\/\na\n\/---\/\nb\n\/---\/\nc\n\/---\/\nd\n\/---\/\n<\/code><\/pre>\n\n<h4>1.0<\/h4>\n\n<ul>\n<li>First release<\/li>\n<\/ul>","raw_excerpt":"Easily create one or more columns in your posts or pages. Easy styling with a complete set of generated CSS classes.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/8547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=8547"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/tsuijten"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=8547"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=8547"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=8547"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=8547"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=8547"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=8547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}