이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Columns

설명

Create a column group with the [column-group] shortcode, then add columns to the group with the [column] shortcode, like this:

[column-group]
    [column]This is my first column[/column]
    [column]This is my second column[/column]
[/column-group]

You can also span columns, like this:

[column-group]
    [column span="2"]This is my first column spanned across two columns.[/column]
    [column]This is my second column[/column]
    [column]This is my third column[/column]
[/column-group]

The first column will be twice as large as the second or third.

Styles are in columns.css. If you’d like your own margins and stuff, dequeue the columns.css style during wp_enqueue_scripts with a priority of 11 or more.

스크린샷

  • Columns demo
  • This is how things look in the editor

설치

  1. Download archive and unzip in wp-content/plugins or install via Plugins – Add New.
  2. Start using the [column-group] and [column] shortcodes.

FAQ

Installation Instructions
  1. Download archive and unzip in wp-content/plugins or install via Plugins – Add New.
  2. Start using the [column-group] and [column] shortcodes.

후기

2017년 8월 25일
I really like these kind of lean plugins. Maybe it's not for everyone but it doesn't add any bloat and I like that. To the people who say this plugin is not responsive. Responsive settings are based on CSS defined media breakpoints. The author of this plugin did not include these. Different themes use different breakpoints. So yeah you might have to add a few lines of css yourself to accomplish responsive effects. But in the end this will always look better than pre defined responsive css settings included in some other plugins, which will not always look good on every theme. example: @media only screen and (max-width:768px) { .columns-2 .column { width: 100%; } .columns-3 .column { width: 100%; } }
2016년 9월 3일
It sort of works but put everything into a colored box with a tiny font. Useless to me but might be OK for some people (that like tiny fonts and weird boxes)
모든 22 평가 읽기

기여자 & 개발자

“Columns”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Columns”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

0.7.3

  • Testing in 4.3 and 4.4

0.7.2

  • Fix wpautop issues when another shortcode appears in a column
  • Testing in 3.7.1 and 3.8

0.7.1

  • Clear floats after column group
  • Allow other shortcodes inside column contents

0.7

  • First version