Tagged Questions
0
votes
1answer
136 views
Proper syntax for simple conditional bloginfo language
I need to do something like this:
<?php $bloginfo = get_bloginfo( 'language' );
if($bloginfo->en-US){
the_time('jS F Y');
}else{ the_time('d/m/Y');
};
?>
I cant find the proper ...