开发者 | lebasca |
---|---|
更新时间 | 2016年1月4日 14:48 |
捐献地址: | 去捐款 |
PHP版本: | 3.6 及以上 |
WordPress版本: | 4.4 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
No at this moment. The maximum number of column is three and it is predefined.
No, you have to leave this predefine word in order to get the category title; otherwise, the category title won’t be displayed. Also, you can add words before or after the reserved word for category title (%%title%%).
You have to enter the category id into include category textbox. You can also enter the categories that you want to exclude into exclude category textbox.
Custom option is disabled when there are no categories typed in include category textbox. Once you enter some text, you will see the custom option enabled.
No, the font-family is the same for the whole output plugin.
Yes, the color picker is next to the textbox for entering the color. When you click on the square, the color picker tool will appear below the textbox. This color picker works the same as the one in photoshop.
Yes, you can limit the amount of excerpt words by adding these lines in your functions.php file located in your theme directory: function custom_excerpt_length( $length ) { return 25; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); In the example above, I limited the excerpt to 25 words but you can put any number that you want.
The version 1.3 of this plugin supports two parameters: include category and exclude category. Example: [columnpost cat_inc=”1,8″ cat_exc=”4″] // lists categories 1 and 8 and exclude category 4 [columnpost cat_inc=”1,8″] // lists categories 1 and 8 and uses the exclude category if it is specified in the settings [columnpost cat_exc=”4″] // excludes category 4 and uses the include category if it is specified in the settings