Code: Select all
echo $site->url();
Code: Select all
echo $site->url();
Code: Select all
<style>
@media (min-width: 992px) {
.col-lg-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 75%;
}
}
</style>
Code: Select all
@media (min-width: 992px) {
.col-lg-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
}
Code: Select all
$string = $L->get( 'default-string' );
if ( strstr( $L->get( 'replace-string' ), '%replace%' ) ) {
$string = str_replace( '%replace%', my_function(), $L->get( 'replace-string' ) );
}