這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

McNinja Post Styles

外掛說明

Go to the homepage or blog page of a site, chances are, all of the posts look similar: A title, an excerpt and a featured image. Why not display the most important part of your posts to readers and actually give them a reason to click on your post a read it? That’s what this plugin does.

To enable Post Style formatting functionality, go to Settings->Reading and select “Enable Post Style formatting.”

McNinja Post Styles is what we always wanted Post Formats to be: powerful, flexible and extendable. Unleash the creativity of your content.

McNinja Post Styles can display content based on the Post Style of a post. For example, if your post has a video in it and you’ve selected the ‘Video’ style, your blog page, category pages, etc. will display that video rather than an excerpt.

Post Styles can be selected for a Post from the ‘Edit Post’ screen.

For more information or to follow the project, check out the project page.

McNinja Post Styles…

  • Allows authors to choose how to display a Post
  • Supports all of the formats added by Post Formats (aside, gallery, link, image, quote, status, video, audio, chat) so that if your theme made use of Post Formats, the same templates can be used.

螢幕擷圖

  • Example of posts utlizing Post Styles with 'video', 'image', and 'standard' post styles.

  • A post excerpt using the Gallery post style

  • A post excerpt using the Playlist post style

  • A post excerpt using the List post style

  • A post excerpt using the Video post style

  • A post excerpt using the Embed post style

  • A post excerpt using the Quote post style

  • The metabox added to the Post Edit screen

  • Option on Settings -> Reading screen to enable Post Style formatting

安裝方式

Using The WordPress Dashboard

  1. Navigate to the ‘Add New’ Plugin Dashboard
  2. Select mcninja-post-styles.zip from your computer
  3. Upload
  4. Activate the plugin on the WordPress Plugin Dashboard

Using FTP

  1. Extract mcninja-post-styles.zip to your computer
  2. Upload the mcninja-post-styles directory to your wp-content/plugins directory
  3. Activate the plugin on the WordPress Plugins dashboard

常見問題集

How do I make use of Post Styles?

Simply go to Settings->Reading and select “Enable Post Style formatting”, save your changes, and you’re ready to roll!

How do I use Post Styles to display custom theme templates I’ve created?

In your loop or other area in which displaying a content template, change your get_template_part call to the following:

get_template_part( ‘content’, get_post_style() );

get_post_style() will return the slug of the selected post style, for example, if a post is using the ‘image’ Post Style, then get_template_part will be looking to use content-image.php to display the post.

What template will be used if the ‘Standard’ post style (default) is selected?

By default, it will look for content-post.php, if there is no content-post.php, it will use content.php

How do I add CSS to a specific Post Style?

Posts will have a class associated with their style. The class name is in the form of ‘post-style-(slug-name)’, so a post using ‘image’ can be targeted with the ‘.post-style-image’ class.

How do I add a new Post Style?

The ‘post_style_strings’ filter allows you to add new styles. It provides an array of Post Styles and you can add your new post style. The example below adds a new post style named ‘Golden Unicorn’, with a slug ‘golden-unicorn’.

function my_new_custom_post_style( $strings ) {
$strings[‘golden-unicorn’] = _x( ‘Golden Unicorn’, ‘Post style’ );
return $strings;
}
add_filter( ‘post_style_strings’, ‘my_new_custom_post_style’);

Why aren’t there template files?

This plugin provides the mechanism for allowing custom post formats. It is basically a glorified taxonomy. It is up to themes and developers to utlize this. I’ll be writing some tutorials and examples on my blog shortly though. Feel free to shoot me an email or contact me in the meantime.

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈McNinja Post Styles〉的開發相關工作。

參與者

將〈McNinja Post Styles〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

2.0.1

  • Add content formatting for Image post style
  • Documentation update

2.0

  • Add content formatting based on Post Style
  • Add option in Settings -> Reading to enable Post Style formatting
  • Add “Embed” Post Style
  • Add “Chat” Post Style
  • Add “Playlist” Post Style

1.1

  • Expose get_post_style_link() function
  • Expose get_post_style_string() function
  • i18n support: add .pot file and make strings translateable
  • Add backwards compatibility with post-format CSS classes for themes already implementing post formats

1.0

  • Initial release