Proper customization
-
After the upgrade of customizr i understand the importance of proper customization.
I had copied some classes since I did not know how to add them in function.
So if I have this in class-header-header_main.php;
$logo_class = apply_filters( ‘tc_logo_class’, ‘brand span3’ );
And manually changed to ;
$logo_class = apply_filters( ‘tc_logo_class’, ‘brand span1’ );
How would I write that in functions?
I also changed basic size so this in function may work?
add_filter( ‘slider_full_size’, ‘my_slider_full_size’);
function my_slider_full_size() {
$sizeinfo = array( ‘width’ => 1800 , ‘height’ => 1300, ‘crop’ => false );
return $sizeinfo;
}Sorry this seems for sure basic for you but I have not done any php yet.
But will start to learn and customize in the right way ??
- The topic ‘Proper customization’ is closed to new replies.