This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Template Name: Full Width | |
*/ | |
get_header(); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="primary" class="content-area sixteen columns"> | |
<main id="main" class="site" role="main"> | |
<?php get_template_part( 'content/content', 'page' ); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row"> | |
<div id="primary" class="col-sm-4 col-md-6 col-lg-4"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#content { | |
-webkit-column-count: 4; /* Chrome, Safari, Opera */ | |
-moz-column-count: 4; /* Firefox */ | |
column-count:41; | |
} | |
#content { | |
-webkit-column-width: 300px; /* Chrome, Safari, Opera */ | |
-moz-column-width: 300px; /* Firefox */ | |
column-width: 300px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#content { | |
float:left; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#content { | |
clear: both; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Book Your Consultation</h1> | |
<p>You can add a bit of info here to to briefly describe the booking process and how it can be done automatically, right now.</p> | |
<h2>Step One:</h2> | |
<h3>Select the type of consultation you want below.</h3> | |
[app_services] | |
<h2>Step Two:</h2> | |
<h3>Select the date and time of the consultation below, then fill out your basic info, followed by clicking the "please click here to confirm your appointment" button. If you're a member, you can login below.</h3> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>Dear CLIENT,</p> | |
<p>I'm delighted to confirm your consultation with me, Jane Doe on SITE_NAME.</p> | |
<p>Here are your consultation details: | |
<br>Your Session Type: SERVICE | |
<br>Date and time: DATE_TIME (Your timezone here)</p> | |
<p><strong>IMPORTANT:</strong></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function register_my_menu() { | |
register_nav_menu('new-menu',__( 'New Menu' )); | |
} | |
add_action( 'init', 'register_my_menu' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function register_my_menus() { | |
register_nav_menus( | |
array( | |
'new-menu' => __( 'New Menu' ), | |
'another-menu' => __( 'Another Menu' ), | |
'an-extra-menu' => __( 'An Extra Menu' ) | |
) | |
); | |
} | |
add_action( 'init', 'register_my_menus' ); |