Skip to content

Instantly share code, notes, and snippets.

/*
* For a clean bxSlider!
*/
.bx-wrapper .bx-viewport {
background : none;
border : 0px;
left : 0px;
-moz-box-shadow : none;
-webkit-box-shadow : none;
<?php
/**
* Content heading auto ID
*
* Examples;
* <h*>Test Header</h*>
* <h* id="test-header">Test Header</h*>
*/
<?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?
));
}