Display current year PHP code in copyright notice – WordPress
<p>&copy; <?php echo date("Y") ?></p>
Source: Free WordPress Training – Code For Automatic Copyright Year Change In WordPress Theme Footer
<p>&copy; <?php echo date("Y") ?></p>
Source: Free WordPress Training – Code For Automatic Copyright Year Change In WordPress Theme Footer
Graphic designer since before the Internet. Started with newspaper paste-up; then art director for advertising agency in Reno, NV; and now freelancer designing marketing materials, print-on-demand t-shirt art, websites, and social media graphics.
Mission: Create e-commerce Website using WordPress Client: 2020 Euro Lens Bath Art director, re-branding manager & Website designer: Jay Miller Solution: Use WordPress for content management (CMS) Use GetShopped’s WP e-Commerce plugin for the shopping cart Customize WordPress’s default Twenty Ten 1.2 theme by creating a child theme
WordPress Child Theme Case Study: 2020 Euro Lens Bath WordPress version: 3.1 WordPress Theme: Child Theme for Twenty Ten 1.2 Section 1 of 4 Copy header.php file to Child Theme folder Delete the following lines (approx 60-66) from header.php: <?php $heading_tag = ( is_home() || is_front_page() ) ? ‘h1’ : ‘div’; ?> <<?php echo $heading_tag;…
This is an outline of major elements on a thematic page. It includes most div elements, theme actions and hooks, and widget areas. See diagram here: http://bluemandala.com/thematic/thematic-structure.html
http://www.sitepoint.com/blogs/2010/07/06/how-to-use-the-new-custom-menu-feature-in-wordpress-3-0/
Problem: The Events Calendar‘s Featured Image displays at the top of the Event’s Single page. Goal: To have the Featured Image display ONLY on the Calendar’s List page, and NOT on the Event’s single page. Solution: Customize the Events Calendar’s template files: Create a /tribe-events/ folder in your Child Theme’s folder. Go to: root/wp-content/plugins/the-events-calendar/views/single-event.php, and copy the…
WordPress Child Theme Case Study: 2020 Euro Lens Bath Create a Child Theme (style.css and functions.php files) In the functions.php file, add: <?php /** Tell WordPress to run child_theme_setup() when the ‘after_setup_theme’ hook is run. Help from: http://digitalraindrops.net/2010/08/the-second-menu/ */ add_action( ‘after_setup_theme’, ‘child_theme_setup’ ); /** This function will hold our new calls and overrides. Help from:…