This file contains hidden or 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
/* | |
* For a clean bxSlider! | |
*/ | |
.bx-wrapper .bx-viewport { | |
background : none; | |
border : 0px; | |
left : 0px; | |
-moz-box-shadow : none; | |
-webkit-box-shadow : none; |
This file contains hidden or 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 | |
/** | |
* Content heading auto ID | |
* | |
* Examples; | |
* <h*>Test Header</h*> | |
* <h* id="test-header">Test Header</h*> | |
*/ |
This file contains hidden or 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_filter('upload_mimes','external_mimes'); | |
function external_mimes($mimes){ | |
return array_merge($mimes,array ( | |
'rar'=> 'application/x-rar-compressed', // you can add more? | |
)); | |
} |
NewerOlder