Skip to content

Instantly share code, notes, and snippets.

@nomase63
nomase63 / breadcrumbs-functions.php
Created December 21, 2020 10:33 — forked from tinotriste/breadcrumbs-functions.php
Wordpress: Breadcrumbs function
<?php
/*=============================================
= BREADCRUMBS =
=============================================*/
// to include in functions.php
function the_breadcrumb() {
$sep = ' > ';
@nomase63
nomase63 / functions.php
Created December 1, 2020 10:58 — forked from offroadkev/functions.php
Quick Featured Post Checkbox For WordPress Blog Posts (native 'posts' post type
/*
* Adds a Featured Post meta box to the post editing screen
*/
function blog_featured_meta() {
add_meta_box( 'blog_meta', __( 'Featured Posts', 'blog-textdomain' ), 'blog_meta_callback', 'post', 'side', 'high' );
}
add_action( 'add_meta_boxes', 'blog_featured_meta' );
/**
* Outputs the content of the meta box
@nomase63
nomase63 / template-authors.php
Created September 17, 2020 20:46 — forked from IngmarBoddington/template-authors.php
Example authors page template for multi-author WordPress blogs
<?php
/*
Template Name: Authors
*/
?>
<?php get_header(); ?>
<!-- BEGIN #content-wrap -->
<div id="content-wrap" class="clearfix">