The following is what you would put in the “active” themes functions.phppage. Changing the Logo Default it is the WordPress Logo. Change the file path to meet your needs. Changing the URL Default, this links to the WordPress site. Make this change to change it to your sites home page. Changing the Title This is … Continue reading »
Filed under Tutorials …
WordPress: Display Post’s Author Information
If you want to display the information of the post’s author, just use this code below. Simple and easy! The image it returns comes from the email address and the corresponding Gravatar. The name and bio information comes from the User settings in the WordPress admin section. Enjoy? Would you care to share it? Related … Continue reading »
WordPress How To: Automatically add a Google+ button to your posts
This is a very simple hook to accomplish. Every time you publish a post, a Google+ button is automatically added to your post. This will also add it to all your existing posts. Here’s how: Open your functions.php page and paste the following code.
HTML5 Page Structure
HTML5 is the newest version of HTML. It brings a great deal of new features. The previous version of HTML (4.01) came out in 1999 and the internet has change a BUNCH since then. Today, some elements in HTML 4.01 are obsolete, never used, or not used the way they were intended to. These elements … Continue reading »
Create a “Stitched” Look in CSS
Okay let’s say you are creating a web site for a fabric company. They come to you and say they want their web site to represent who they, and they have a right to. As you go through your process of getting information on how the cusotmer wants the web site to look and all … Continue reading »
41 Useful jQuery Examples
jQuery is vastly becoming one of the most used JavaScript libraries on the web. Mainly due to its high customization factor. There are many sites out on the web that have great example and even source code for you to reference. I recently found a good one. I have started using jQuery as my go to JavaScript … Continue reading »
How To: Automatically email contributors when their posts are published
When you have site that has multiple authors, it would be plus to have those authors be emailed once their article is published. Where here is a little trick to allow that. Just put the following code in your functions.php page and save. You should now be all set to go! Cheers! If you enjoyed … Continue reading »
Creating an ASP .NET Web Form
During my crash course in ASP.NET 4.0, I have created some ASP.NET Mailto web forms that mimic those that I have written in PHP. Here are the steps that I took. For this tutorial, I will be using VB for the code behind. Those that need it in C#, here is a handy online code … Continue reading »