Hi,
I’m trying to insert the date between logo and menu, on my website.. http://www.highheelrescue.com
The format of the date should be like: NYC October 27, 2015 and add also the social icon …
like this website : http://beautyandwellbeing.com
Is it possible ? How can I do it ?
Thanks
Raoul
Hey raoulbeltra!
Please add following code to Functions.php file in Appearance > Editor
function avia_get_the_date_sc(){
return the_time('F j, Y');
}
add_shortcode( 'avia_date', 'avia_get_the_date_sc' );
and then go to Appearance > Menus and add a new Custom link with # for URL and insert [avia_date] into navigation field, add it to your menu and move it to the top
Cheers!
Yigit