Edit
-
Various WP snippets
Show Links Menu w/Active Class
<nav>
<?php $args=array(
'sort_order' => 'ASC',
'sort_column' => 'post_date',
'hierarchical' => 1,
'exclude' => '',
'include' => '',
'meta_key' => '',
'meta_value' => '',
'authors' => '',
'child_of' => 0,
'parent' => -1,
'exclude_t...
Code
Template Coding
Wordpress
2013
-
Trauma Informed Care
Information & Blog
Stylesheet Coding
Template Coding
Work
Wordpress
2013
-
Oakland Police
Charity Information & Donation
Work
Wordpress
Stylesheet Coding
2016
-
Ferber Law
Lawyer Firm Promotional
Work
Wordpress
Stylesheet Coding
2016
-
Calvin Associates
Lawyer Firm Promotional
Work
Wordpress
Stylesheet Coding
2016
-
AG & Associates
Construction Portfolio & Promotion
Work
Wordpress
Stylesheet Coding
PHP
2016
-
Foster Care Training
Education Service Promotion
Work
Stylesheet Coding
Wordpress
2016
-
Post referencing setup
Assign multiple disciplines to a project
<?php
// Adds custom post type for Projects and Services
function create_post_type(){
register_post_type('project',
array(
'labels' => array(
'name' => __('Projects'),
'singular_name' => __('Project')
),
'taxonomies' => array('category'),
'public...
Code
Wordpress
2016
-
Rate Your Customer / Rate My Contractor
Work
Wordpress
Stylesheet Coding
PHP
2015
-
Custom Post Types
Adds custom post type called "Reviews"
<?php
function create_post_type(){
register_post_type('review',
array(
'labels'=>array(
'name'=>__('Reviews'),
'singular_name'=>__('Review')
),
'public'=>true,
'has_archive'=>true,
'capabilities'=>array...
Wordpress
Code
2016