This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://github.com/hudochenkov/postcss-sorting | |
// https://smacss.com/book/formatting | |
// https://github.com/mrmlnc/vscode-postcss-sorting | |
{ | |
"postcssSorting.config": { | |
"order": [ | |
"custom-properties", | |
"dollar-variables", | |
"declarations", | |
"at-rules", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add this snippet to your funstions.php to use any custom template as you static front page if your theme has front-page.php // that overwrites custom template. This also supports page templates created with a page builder. | |
add_filter( 'frontpage_template', 'mc_filter_front_page_template' ); | |
/** | |
* Bypass font-page.php. | |
* | |
* @param string $template Custom Template Slug. | |
* @return string |