Title: Column Shortcodes
Author: Tobias Schutter
Published: <strong>Ògún  2, 2012</strong>
Last modified: Ọ̀wàrà 11, 2022

---

Ṣàwárí àwọn plugin

![](https://ps.w.org/column-shortcodes/assets/banner-772x250.png?rev=580886)

Plugin yìí **kò tíì ṣe àyẹ̀wò pẹ̀lú àwọn ìtújáde mẹ́ta pàtàkì tó kẹ́yìn ti WordPress**.
Ó lè jẹ́ pé a kò tọ́jú tàbí ṣe àtìlẹ́yìn fún un mọ́, ó sì lè ní àwọn ọ̀ràn ìbámu
nígbà tí a bá lò ó pẹ̀lú àwọn ẹ̀yà WordPress tuntun.

![](https://ps.w.org/column-shortcodes/assets/icon-256x256.png?rev=1679769)

# Column Shortcodes

 Láti ọwọ́ [Tobias Schutter](https://profiles.wordpress.org/tschutter/)

[Ṣe ìgbàsílẹ̀](https://downloads.wordpress.org/plugin/column-shortcodes.1.0.1.zip)

 * [Àwọn àlàyé](https://yor.wordpress.org/plugins/column-shortcodes/#description)
 * [Àwọn àgbéyẹ̀wò](https://yor.wordpress.org/plugins/column-shortcodes/#reviews)
 *  [Ìgbéwọlẹ̀](https://yor.wordpress.org/plugins/column-shortcodes/#installation)
 * [Ìdàgbàsókè](https://yor.wordpress.org/plugins/column-shortcodes/#developers)

 [Ìrànlọ́wọ́](https://wordpress.org/support/plugin/column-shortcodes/)

## Àpèjúwe

Adds shortcodes to easily create columns in your posts or pages.

Sometimes you just need to divide your page into different columns. With this plugin
you just select a column shortcode and it will add the column to the page. You can
also change the padding of each individual column from the UI.

There are 10 different column widths available from which you can make all combinations:

 * full width (1/1)
 * half (1/2)
 * one third (1/3)
 * two third (2/3)
 * one fourth (1/4)
 * three fourth (3/4)
 * one fifth (1/5)
 * two fifth (2/5)
 * three fifth (3/5)
 * four fifth (4/5)
 * one sixth (1/6)
 * five sixth (5/6)

A preset stylesheet is included, which you can also overwrite to you liking in your
themeÌtumọ̀ Yorùbá: ’s stylesheet.

**Related Links:**

 * http://www.codepresshq.com/

## Àwọn àwòrán ìbòjú

 * [[
 * Editor with shortcode icon
 * [[
 * Shortcode popup with shortcode selector
 * [[
 * Editor with shortcodes
 * [[
 * Example post with the use of column shortcodes

## Ìgbéwọlẹ̀

 1. Upload column-shortcodes to the /wp-content/plugins/ directory
 2. Activate Column Shortcodes through the ‘Plugins’ menu in WordPress
 3. A shortcode icon is added to the top of the WYSIWYG editor.
 4. Click the added icon and it will open a popup window from which you can pick your
    column shortcode.

## FAQ

### How do I add a column shortcode?

**Standard**
 The easiest way is to use the added icon on the top of your editor(
right next to the media icon ). This will open a popup window from which you can
select a column icon by clicking on one of the shortcodes.

**Manual**
 You could also type in the shortcode yourself inside the editor. The
following shortcodes are available:

    ```
    [full_width][/full_width]
    [one_half][/one_half]
    [one_half_last][/one_half_last]
    [one_third][/one_third]
    [one_third_last][/one_third_last]
    [two_third][/two_third]
    [two_third_last][/two_third_last]
    [one_fourth][/one_fourth]
    [one_fourth_last][/one_fourth_last]
    [three_fourth][/three_fourth]
    [three_fourth_last][/three_fourth_last]
    [one_fifth][/one_fifth]
    [one_fifth_last][/one_fifth_last]
    [two_fifth][/two_fifth]
    [two_fifth_last][/two_fifth_last]
    [three_fifth][/three_fifth]
    [three_fifth_last][/three_fifth_last]
    [four_fifth][/four_fifth]
    [four_fifth_last][/four_fifth_last]
    [one_sixth][/one_sixth]
    [one_sixth_last][/one_sixth_last]
    [five_sixth][/five_sixth]
    [five_sixth_last][/five_sixth_last]
    ```

**Another option**
 Another way to add shortcodes is to switch to HTML-view. On 
the top of editor you will now see all the shortcodes listed. By default these buttons
are hidden. If youÌtumọ̀ Yorùbá: ’d like to use them you can add this to your themeÌtumọ̀
Yorùbá: ’s functions.php:

    ```
    add_filter('add_shortcode_html_buttons', '__return_true' );
    ```

### Where do I add my content?

When you have selected a shorcode it will be placed in you editor. You will see 
something like this:

    ```
    [one_half][/one_half]
    ```

Make sure to place your content (text/images etc. ) between the two shortcodes, 
like so:

    ```
    [one_half]My content goes here...[/one_half]
    ```

### My existing theme uses the same shortcodes, how can I solve this?

You can prefix the shortcode by placing the following in your functions.php. Problem
solved =)

    ```
    add_filter( 'cpsh_prefix', 'set_shortcode_prefix' );
    function set_shortcode_prefix() {
        return 'myprefix_'; // edit this part if needed
    }
    ```

### How can I hide the Padding Settings?

In patch 0.6 we added padding settings (optional) to the plugin. If you would like
to hide this settings menu you can place the following in your functions.php

    ```
    add_filter( 'cpsh_hide_padding_settings', '__return_true' );
    ```

### How can I hide certain Column Shortcodes from the menu?

If you would like to hide certain column from the menu; place the following in your
functions.php

    ```
    function hide_column_shortcodes( $shortcodes ) {

        /* uncomment ( remove the '//' ) any of the following to remove it's shortcode from menu */

        // unset( $shortcodes['full_width'] );
        // unset( $shortcodes['one_half'] );
        // unset( $shortcodes['one_third'] );
        // unset( $shortcodes['one_fourth'] );
        // unset( $shortcodes['two_third'] );
        // unset( $shortcodes['three_fourth'] );
        // unset( $shortcodes['one_fifth'] );
        // unset( $shortcodes['two_fifth'] );
        // unset( $shortcodes['three_fifth'] );
        // unset( $shortcodes['four_fifth'] );
        // unset( $shortcodes['one_sixth'] );
        // unset( $shortcodes['five_sixth'] );

        return $shortcodes;
    }
    add_filter( 'cpsh_column_shortcodes', 'hide_column_shortcodes' );
    ```

### How can I replace the default Shortcode CSS stylesheet?

You can easily overwrite the existing stylesheet. For example you would like to 
add a margin between your columns, you just place the following in your themeÌtumọ̀
Yorùbá: ’s style.css:

    ```
    .one_half {
        width: 49% !important;
        margin-right: 2% !important;
    }
    .one_half.last_column {
        width: 49% !important;
        margin-right: 0px !important;
    }
    .one_third {
        width: 32% !important;
        margin-right: 2% !important;
    }
    .one_third.last_column {
        width: 32% !important;
        margin-right: 0px !important;
    }
    .two_third {
        width: 66% !important;
        margin-right: 2% !important;
    }
    .two_third.last_column {
        width: 66% !important;
        margin-right: 0px !important;
    }
    .one_fourth {
        width: 23.5% !important;
        margin-right: 2% !important;
    }
    .one_fourth.last_column {
        width: 23.5% !important;
        margin-right: 0px !important;
    }
    .three_fourth {
        width: 74.5% !important;
        margin-right: 2% !important;
    }
    .three_fourth.last_column {
        width: 74.5% !important;
        margin-right: 0px !important;
    }
    .one_fifth {
        width: 18.4% !important;
        margin-right: 2% !important;
    }
    .one_fifth.last_column {
        width: 18.4% !important;
        margin-right: 0px !important;
    }
    .two_fifth {
        width: 39% !important;
        margin-right: 2% !important;
    }
    .two_fifth.last_column {
        width: 39% !important;
        margin-right: 0px !important;
    }
    .three_fifth {
        width: 59% !important;
        margin-right: 2% !important;
    }
    .three_fifth.last_column {
        width: 59% !important;
        margin-right: 0px !important;
    }
    .four_fifth {
        width: 79.6% !important;
        margin-right: 2% !important;
    }
    .four_fifth.last_column {
        width: 79.6% !important;
        margin-right: 0px !important;
    }
    .one_sixth {
        width: 15% !important;
        margin-right: 2% !important;
    }
    .one_sixth.last_column {
        width: 15% !important;
        margin-right: 0px !important;
    }
    ```

### How can I prevent the loading of the frontend styling

If you would like to prevent the loading of the column styling on the frontend; 
place the following in your functions.php

    ```
    add_filter( 'cpsh_load_styles', '__return_false' );
    ```

### Will you be adding more shortcodes?

We would love to hear your feedback and suggestions on this. Just send an email 
to [info@codepress.nl](https://yor.wordpress.org/plugins/column-shortcodes/info@codepress.nl?output_format=md).

### How can I contribute a translation?

You will find a .po file in the languages folder which you can use. You can send
the translation to [info@codepress.nl](https://yor.wordpress.org/plugins/column-shortcodes/info@codepress.nl?output_format=md).

## Àwọn àgbéyẹ̀wò

![](https://secure.gravatar.com/avatar/74ce5bf795ac695b6961504c359d9cad15edc609749897091ae92bd03d4fc17b?
s=60&d=retro&r=g)

### 󠀁[Basic column shortcode, IÌtumọ̀ Yorùbá: ’m sure there are better ones out there.](https://wordpress.org/support/topic/basic-column-shortcode-im-sure-there-are-better-ones-out-there/)󠁿

 [hmschiefer](https://profiles.wordpress.org/hmschiefer/) Bélú 9, 2022

I only use this because itÌtumọ̀ Yorùbá: ’s what my client already had installed
and theyÌtumọ̀ Yorùbá: ’ve been using it for years. When I asked why I canÌtumọ̀
Yorùbá: ’t align content vertically within a column I was simply told, “it canÌtumọ̀
Yorùbá: ’t do that and we wonÌtumọ̀ Yorùbá: ’t be adding this”. Seems lazy, but 
what do I know?

![](https://secure.gravatar.com/avatar/7f4f41fddad56fd30819eb025d93fde763a6a4b3606af5e42b9d5bfb13bb161c?
s=60&d=retro&r=g)

### 󠀁[Perfect](https://wordpress.org/support/topic/perfect-8994/)󠁿

 [Viktor Jenerál](https://profiles.wordpress.org/viktor961/) Ṣẹrẹ 4, 2022

Perfect plugin! Thanks a lot.

![](https://secure.gravatar.com/avatar/83d3670dfd27bd6aae7cb411a64ed4e6122643b111f27cb1112afda1b9490112?
s=60&d=retro&r=g)

### 󠀁[Easy to use](https://wordpress.org/support/topic/easy-to-use-3568/)󠁿

 [maruska](https://profiles.wordpress.org/maruska/) Ọ̀pẹ 13, 2020

Simple and easy to use, that is the reason I like it.

![](https://secure.gravatar.com/avatar/a8c3a6c4ededc8d2a9eaddbe844b41b1cdfb69f59ac64ae2f28b50ff142f66a6?
s=60&d=retro&r=g)

### 󠀁[Easy to use, perfect!](https://wordpress.org/support/topic/easy-to-use-perfect-7/)󠁿

 [mvkwebmaster](https://profiles.wordpress.org/mvkwebmaster/) Ṣẹrẹ 24, 2021

Easy to use, best result, perfect!

![](https://secure.gravatar.com/avatar/12753a13d96c16631c7e359fbe674a6dc7e22267803ab69f1651eee9f41dfdf8?
s=60&d=retro&r=g)

### 󠀁[Easy to use, works great!](https://wordpress.org/support/topic/easy-to-use-works-great-67/)󠁿

 [my3seadogs](https://profiles.wordpress.org/my3seadogs/) Ọ̀wàrà 11, 2020

IÌtumọ̀ Yorùbá: ’ve been using this plugin for ages now. IÌtumọ̀ Yorùbá: ’m so glad
it exists!

![](https://secure.gravatar.com/avatar/17d9ded163047ac3194da0cf4981a474e0162be6fc9f84ad956183e2ba6da0b3?
s=60&d=retro&r=g)

### 󠀁[Simple Ìtumọ̀ Yorùbá: – but works well](https://wordpress.org/support/topic/simple-but-works-well-5/)󠁿

 [pslom](https://profiles.wordpress.org/pslom/) Agẹmọ 1, 2020

Simple plugin, but does what itÌtumọ̀ Yorùbá: ’s supposed to. Recommended over all
the wysiwyg “solutions”.

 [ Ka gbogbo àwọn àgbéyẹ̀wò 135 ](https://wordpress.org/support/plugin/column-shortcodes/reviews/)

## Àwọn Olùkópa & Olùgbéejáde

“Column Shortcodes” jẹ́ ètò ìṣàmúlò orísun ṣíṣí sílẹ̀. Àwọn ènìyàn wọ̀nyí ti ṣe 
ìkópa sí plugin yìí.

Àwọn Olùkópa

 *   [ Tobias Schutter ](https://profiles.wordpress.org/tschutter/)
 *   [ Codepress ](https://profiles.wordpress.org/codepress/)
 *   [ David Mosterd ](https://profiles.wordpress.org/davidmosterd/)
 *   [ Stefan van den Dungen Gronovius ](https://profiles.wordpress.org/dungengronovius/)

A ti túmọ̀ “Column Shortcodes” sí àwọn èdè agbègbè 17. Ọpẹ́lọpẹ́ fún [àwọn atúmọ̀ èdè](https://translate.wordpress.org/projects/wp-plugins/column-shortcodes/contributors)
fún àwọn ìkópa wọn.

[Túmọ̀ “Column Shortcodes” sí èdè rẹ.](https://translate.wordpress.org/projects/wp-plugins/column-shortcodes)

### Ṣe o nífẹ̀ẹ́ sí ìdàgbàsókè?

[Ṣàwárí koodu](https://plugins.trac.wordpress.org/browser/column-shortcodes/), ṣàyẹ̀wò
[ibi ìpamọ́ SVN](https://plugins.svn.wordpress.org/column-shortcodes/), tàbí ṣe 
àgbékalẹ̀ sí [àkọsílẹ̀ ìdàgbàsókè](https://plugins.trac.wordpress.org/log/column-shortcodes/)
nípasẹ̀ [RSS](https://plugins.trac.wordpress.org/log/column-shortcodes/?limit=100&mode=stop_on_copy&format=rss).

## Àkọsílẹ̀ àwọn àyípadà

#### 1.0.1

 * [Fixed] Hotfix for WordPress 5.5

#### 1.0

 * [Fixed] Compatible with WordPress 4.8 and up
 * [Fixed] Padding generator will automatically add ‘px’ to numbers
 * [Added] Added filter to hide banner `add_filter( 'cpsh_show_banner', '__return_false');`
 * [Improved] UI improvements for better readability

#### 0.6.9

 * [Fixed] Rollback of the auto paragraphs. Too much conflicts with other shortcodes

#### 0.6.8

 * [Fixed] use wpautop() to wrap content in paragraphs when needed

#### 0.6.7

 * [Fixed] Paragraphs are added to the columns

#### 0.6.6

 * [Fixed] Swapped images for 5/6 columns

#### 0.6.5

 * added filter to prevent loading of frontend styles: `add_filter( 'cpsh_load_styles','
   __return_false' );`
 * added 5/6 column;

#### 0.6.4

 * updated icon for WP3.8

#### 0.6.3

 * updated languages

#### 0.6.2

 * added Italian language ( thanks to Nicola )
 * added Czech language and bug fix ( thanks to Michal Ratajsky )

#### 0.6.1

 * fixed jquery.cookie.js issue where in some cases the server would reject it
 * added filter for hiding certain column shortcodes from view.

#### 0.6

 * added Danish translation ( thanks to Mads Rosendahl )
 * added full width column
 * updated css template for margins ( thanks to intheshallow )
 * added responsive CSS for devices with a max-width viewport of 600pixels

#### 0.5

 * added the option to add paddings to the columns from the shortcode UI.

#### 0.4

 * added improvements made for inclusion on WordPress.com VIP ( thanks to danielbachhuber)
 * added WordPress coding conventions ( see https://codex.wordpress.org/WordPress_Coding_Standards)
 * added fix for script and style loading

#### 0.3

 * added RTL support and Hebrew language ( thanks to Rami Yushuvaey )
 * added Slovak translation ( thanks to Branco from WebHostingGeeks )
 * added column 4/5

#### 0.2

 * added french and spanish language ( thanks to Mikel Aralar )
 * improved script loading
 * shortcodes HTML-view buttons hidden by default. Enable them by adding this to
   your functions.php: `add_filter('add_shortcode_html_buttons', '__return_true');`

#### 0.1

 * Initial release.

## Àkójọpọ̀ Meta

 *  Ẹ̀yà **1.0.1**
 *  Ìgbàgbọ́hùn tó kẹ́yìn **ọdún 4 sẹ́yìn**
 *  Àwọn ìgbéwọlẹ̀ tó ṣiṣẹ́ **60,000+**
 *  Ẹ̀yà WordPress ** 4.8 tàbí ju bẹ́ẹ̀ lọ **
 *  Dánwò dé **6.0.12**
 *  Àwọn èdè
 * [Czech](https://cs.wordpress.org/plugins/column-shortcodes/), [Danish](https://da.wordpress.org/plugins/column-shortcodes/),
   [Dutch](https://nl.wordpress.org/plugins/column-shortcodes/), [Dutch (Belgium)](https://nl-be.wordpress.org/plugins/column-shortcodes/),
   [English (Australia)](https://en-au.wordpress.org/plugins/column-shortcodes/),
   [English (Canada)](https://en-ca.wordpress.org/plugins/column-shortcodes/), [English (New Zealand)](https://en-nz.wordpress.org/plugins/column-shortcodes/),
   [English (UK)](https://en-gb.wordpress.org/plugins/column-shortcodes/), [English (US)](https://wordpress.org/plugins/column-shortcodes/),
   [Galician](https://gl.wordpress.org/plugins/column-shortcodes/), [German](https://de.wordpress.org/plugins/column-shortcodes/),
   [Hebrew](https://he.wordpress.org/plugins/column-shortcodes/), [Russian](https://ru.wordpress.org/plugins/column-shortcodes/),
   [Slovak](https://sk.wordpress.org/plugins/column-shortcodes/), [Spanish (Chile)](https://cl.wordpress.org/plugins/column-shortcodes/),
   [Spanish (Spain)](https://es.wordpress.org/plugins/column-shortcodes/), [Spanish (Venezuela)](https://ve.wordpress.org/plugins/column-shortcodes/),
   àti [Swedish](https://sv.wordpress.org/plugins/column-shortcodes/).
 *  [Túmọ̀ sí èdè rẹ](https://translate.wordpress.org/projects/wp-plugins/column-shortcodes)
 * Àwọn àmì
 * [column](https://yor.wordpress.org/plugins/tags/column/)[columns](https://yor.wordpress.org/plugins/tags/columns/)
   [divider](https://yor.wordpress.org/plugins/tags/divider/)[shortcode](https://yor.wordpress.org/plugins/tags/shortcode/)
   [shortcodes](https://yor.wordpress.org/plugins/tags/shortcodes/)
 *  [Ìwòye Tó Péye](https://yor.wordpress.org/plugins/column-shortcodes/advanced/)

## Àwọn ìbò

 4.8 lára àwọn ìràwọ̀ 5.

 *  [  122 5-star reviews     ](https://wordpress.org/support/plugin/column-shortcodes/reviews/?filter=5)
 *  [  3 4-star reviews     ](https://wordpress.org/support/plugin/column-shortcodes/reviews/?filter=4)
 *  [  2 3-star reviews     ](https://wordpress.org/support/plugin/column-shortcodes/reviews/?filter=3)
 *  [  3 2-star reviews     ](https://wordpress.org/support/plugin/column-shortcodes/reviews/?filter=2)
 *  [  4 1-star reviews     ](https://wordpress.org/support/plugin/column-shortcodes/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/column-shortcodes/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/column-shortcodes/reviews/)

## Àwọn Olùkópa

 *   [ Tobias Schutter ](https://profiles.wordpress.org/tschutter/)
 *   [ Codepress ](https://profiles.wordpress.org/codepress/)
 *   [ David Mosterd ](https://profiles.wordpress.org/davidmosterd/)
 *   [ Stefan van den Dungen Gronovius ](https://profiles.wordpress.org/dungengronovius/)

## Ìrànlọ́wọ́

Nǹkan wà tí o fẹ́ sọ? Ṣé o nílò ìrànlọ́wọ́?

 [Wo àpéjọ ìrànlọ́wọ́](https://wordpress.org/support/plugin/column-shortcodes/)

## Ṣe ìtọrẹ

Ṣé o fẹ́ ṣe àtìlẹ́yìn fún ìlọsíwájú plugin yìí?

 [ Ṣe ìtọrẹ sí plugin yìí ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZDZRSYLQ4Z76J)