FAQ

Frequently Asked Questions

How to easily wish a merry Christmas to your blog readers – CodeRevolution

It’s Christmas today! So what about wishing merry Christmas to your readers? In this simple recipe, we’ll see how easy it is to implement a “Merry Christmas” message in your WordPress blog.

To achieve this very simple recipe, simply paste the following code anywhere on your theme. The “Merry Christmas” message will be displayed only on Christmas day.

 <?php  if ((date('m') == 12) && (date('d') == 25)) { ?>     <h2>Merry Christmas from CodeRevolution!</h2>   <?php } ?> 

By the way, merry Christmas to all of you! Have a great time with the family.

CodeRevolution Knowledge Base

Video tutorials