Category Archives: PHP

December 3, 2012

By Kevin

Categories: JavaScript, PHP, Plugin, Verve SSL, WordPress

Verve SSL 1.4.5 Released

I released version 1.4.5 of Verve SSL yesterday.  I updated the doctype so that the plugin will have better compatible with Internet Explorer.  You can download the plugin here.

Kevin

 

August 24, 2012

By Kevin

Categories: JavaScript, PHP, Plugin, Verve SSL, WordPress

Verve SSL 1.4.4 Released

I released version 1.4.4 of Verve SSL yesterday.  I updated the code so that the  plugin will be bypassed and a message will be displayed on the top of the login page if JavaScript is disabled.  It will allow you to login with JavaScript disabled but it will not be a secure login.  If Javascript is enabled the plugin works as normal.  You can download the plugin here.

Kevin

 

April 27, 2012

By Kevin

Categories: JavaScript, PHP, Plugin, Verve SSL, WordPress

Verve SSL 1.4.3 Released

I released version 1.4.3 of Verve SSL today, it includes code optimizations making the code better and faster when processing the case of the URL. You can download the plugin here.

Kevin

April 22, 2012

By Kevin

Categories: JavaScript, PHP, Plugin, Verve SSL, WordPress

Verve SSL 1.4.2 has been released

I released version 1.4.2 of Verve SSL this week, it includes enhancements making the plugin URL case insensitive. You can download the plugin here.

Kevin

January 27, 2012

By Kevin

Categories: PHP, WordPress

Tags: , , ,

How To: Automatically Change Year in a WordPress Theme footer

A few days ago I wanted to add the year to the copyright porition of the footer of my WordPress theme. To do this I added the following code to the footer.php of my theme.

  <p>Copyright &#169; <?php echo date('Y'); ?> <a href="https://www.kevinverver.com">Kevin Verver</a>.</p>

The great thing about this code is that it will change the year automatically each year so that you don’t have to remember to update it yourself.

Kevin