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

Add URL Slugs as Body Classes

描述

This plug-in takes the URL, chops it into pieces, and adds each “piece” as an additional
class to the body tag.

Meaning, if your page’s URL is:
http://www.example.com/2012/02/24/wordpress-plugin-add-url-slugs-as-body-classes/
Your page’s body tag would have at least these classes:
2012 02 24 wordpress-plugin-add-url-slugs-as-body-classess

It gets much stronger when you start thinking about Categories or nested Pages:
http://www.example.com/category/wordpress/
which would add:
category wordpress
while:
http://www.example.com/movies/star-trek/wrath-of-khan/
would add:
movies star-trek wrath-of-khan

This allows you to very easily add custom CSS and/or JS to these pages based on these new CSS classes.

Please let me know if you have any questions/suggestions/thoughts,
Atg
http://aarontgrogg.com/
aarontgrogg@gmail.com

安裝

  1. Download the ZIP
  2. Unzip the ZIP
  3. Copy/paste the unzipped files into your WP plug-in directory (/wp-content/plugins/)
  4. From within WP’s Plugin Admin panel, Activate the plug-in
  5. Write some wicked CSS to amaze your friends and befuddle your enemies…

常見問題

What does this do, exactly?
  • Additional CSS classes are added to the HTML body tag so you can easily add custom CSS and/or JS to Posts or
    Pages. Basically anything that appears in the URL after your domain name, will be split on the “/”, then
    pushed back together separated by spaces in the HTML’s body tag.
What classes?
  • Say you created a Post that could be found at the following URL:
    http://www.example.com/2012/02/24/wordpress-plugin-add-url-slugs-as-body-classes/
    That page’s body tag would have at least these classes:
    2012 02 24 wordpress-plugin-add-url-slugs-as-body-classess

    It gets much stronger when you start thinking about Categories or nested Pages, because a Category page like:
    http://www.example.com/category/wordpress/
    get these additional CSS classes:
    category wordpress
    This would allow you to add custom CSS and/or JS to all Category pages, or even just the WordPress Category page!

    Or a nested Page that could be found at this URL:
    http://www.example.com/movies/star-trek/wrath-of-khan/
    would get these additional CSS classes:
    movies star-trek wrath-of-khan
    So you could add custom CSS just for your Movies pages, other custom CSS for just the Star Trek Movies pages,
    and still more custom CSS for just the Wrath of Khan Star Trek Movie page.

Why would I want to do this?
  • Really only if you used some custom CSS or JS to some specific webpages. You could add custom background images,
    use different fonts, add sound effects, add different JS libraries, the list is limited only by your needs, really.

評價

閱讀全部5個評價

貢獻者及開發者

“Add URL Slugs as Body Classes” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 Add URL Slugs as Body Classes 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

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

修改日誌

1.3

2015-05-15:
* Tested & verified in WP 4.2.2, and added a few FAQs

1.1

2013-01-11:
* Tested & verified in WP 3.5

1.0

2012-02-24:
Well, this is the first version, so… here it is!