Skip to content

Instantly share code, notes, and snippets.

View JamieWritesCode's full-sized avatar

Jamie Baker JamieWritesCode

View GitHub Profile
@JamieWritesCode
JamieWritesCode / primary_category.php
Created May 24, 2016 01:15 — forked from jawinn/primary_category.php
Display Primary Category (Yoast's WordPress SEO)
<?php
// SHOW YOAST PRIMARY CATEGORY, OR FIRST CATEGORY
$category = get_the_category();
$useCatLink = true;
// If post has a category assigned.
if ($category){
$category_display = '';
$category_link = '';
if ( class_exists('WPSEO_Primary_Term') )