Этот плагин не тестировался с последними 3 основными выпусками WordPress. Скорее всего, он уже не поддерживается и может быть несовместим с текущими версиями WordPress.

Conditional Stylesheets and Body Classes

Описание

Easily include browser specific stylesheets in templates or select browser and version specific classes in CSS.

Conditional browser stylesheets are added after the main theme style.css allowing them to overrule previous rules — you only need to add the CSS rules that should change.

This plugin uses up-to-date WordPress top level functions, sanitizes all input data and is fully internationalized.

For feature request and bug reports, please use the Q Support Website.

Please do not use the WordPress.org forum to report bugs, as we no longer monitor or respond to questions there.

Возможности плагина

  • Checks for and adds browser and version specific stylesheets — such as «browsers-windows-firefox.css».
  • Add browser and version specific body classes to all pages — such as body.browsers-msie-10
  • Includes the Mobile Detect class and adds mobile & touch body classes.
  • Adds a post type body class, for example: «posttype-page».
  • Inserts handy HTML comments in the HTML footer of template files to tell you which CSS files could be used and which were found.

Установка

Для автоматической установки через WordPress:

  1. Нажать ‘Добавить новый’ на страницы управления плагинами в панели администрирования WordPress
  2. Search for ‘Browsers’
  3. Нажать Установить и Активировать плагин

Для установки через FTP:

  1. Upload the browsers directory to the /wp-content/plugins/ directory
  2. Активация плагина через закладку Плагины в панели администраирования WordPress

Для загрузки через WordPress без FTP:

  1. В админ панели WordPress в закладках Плагины, надо нажать Добавить новый, а выбрать скачанный zip файл плагина, затем нажать Активировать.

Часто задаваемые вопросы

How do I add and access browser specirfic stylesheets?

To add extra stylesheets, create a new CSS file and upload it to the root of your active theme or in the directory THEME/library/css/ — you can include a mixture of 3 values:

  • Operating System name ( windows, mac, linux )
  • Browser Name ( firefox, safari, chrome, msie )
  • Browser Version ( a specific whole version number )

The plugin then looks for a matching CSS file in the root of the active theme or in the directory THEME/library/css/ using a combinations of these 3 values ( in these example we’ll use IE 10 on windows ):

  • browsers-msie.css
  • browsers-msie-10.css
  • browsers-windows-msie.css
How do I select browser specific classes in my CSS files?

The Browsers plugin adds a collection of extra browser and operating system specific classes to the HTML <body> tag of all front-end pages of the current active theme.

The best way to find out what classes are added is to use a source code inspector like Google Chrome’s Inspector to view the <body> tag.

You can then use these new classes to select HTML elements in the following way ( again using IE 10 as an example ):

~~ style.css ~~

body.browsers-msie-10 {
background-color: red;
}

~~~~~~~~~~~~

Отзывы

Посмотреть все 2 отзыва

Участники и разработчики

«Conditional Stylesheets and Body Classes» — проект с открытым исходным кодом. В развитие плагина внесли свой вклад следующие участники:

Участники

Перевести «Conditional Stylesheets and Body Classes» на ваш язык.

Заинтересованы в разработке?

Посмотрите код, проверьте SVN репозиторий, или подпишитесь на журнал разработки по RSS.

Журнал изменений

0.4.7

  • readme update

0.4.6

  • WP 4.4.1 Testing

0.4.5

  • WP 4.0 Testing

0.4.4

  • 3.9.1 Testing

0.4.3

  • 3.8.1 Testing
  • Forum link

0.4.1

  • Name change

0.4.0

  • Readyness for Q Theme Framework integration

0.3.4

  • Readme corrections

0.3.1

  • Correction to stylesheet location function

0.3

  • Body tags and CSS file names homogenized

0.2

  • First public release.