Categories
How to display the publication date in a container in English in wordpress?
How to display the publication date in the container in English, while the entire backend is in Russian.
Answer the question
In order to leave comments, you need to log in
function month($m) { $eng = array('1' => 'Jan', '2' => 'Feb', '3' => 'Mar', ... , '11' => 'Nov' ); return $eng[$m]; } echo month(get_the_date('m')). ' '.get_the_date('d, Y');
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question