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

SASS Compiler

Описание

Write SASS, edit your variables and compile your stylesheet from your dashboard.

Read the documentation

  • Register and enqueue your SASS sheets the same way you would do for your CSS.

    `
    

    wp_enqueue_style( ‘my-sass-handle’, ‘http://example.com/css/mystyle.scss’, $deps, $ver, $media );
    `

  • Configure the plugin with the sass_configuration filter.

    Configuration of the plugin is optional, but you should at least register your variables if you are using a CSS framework.

  • Set a SASS variable value

    `
    

    sass_set( $variable, $value );
    `

  • Get a SASS variable value

    `
    

    sass_get( $variable );
    `

You will most likely use these functions in your theme’s functions.php.

The plugin uses the scssphp Compiler.

Скриншоты

  • The 'Compiler' page
  • The 'Variables' page after configuration

Установка

  1. Upload sass-compiler to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Find the plugin’s pages under the new ‘SASS’ menu

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

No question asked

No answer to give.

Отзывы

Нет отзывов об этом плагине.

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

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

Участники

Перевести «SASS Compiler» на ваш язык.

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

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

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

1.0

  • Initial commit