Skip to content

Instantly share code, notes, and snippets.

@iladarsda
iladarsda / breadcrumbs.php
Created February 7, 2014 10:19
WordPress: good breadcrumb example
<!-- BREADCRUMB -->
<?php if( function_exists('the_breadcrumbs') ) { ?>
<ol class='breadcrumb '>
<?php the_breadcrumbs(); ?>
</ol>
<?php } ?>
<!-- // BREADCRUMB -->
@iladarsda
iladarsda / style.css
Created February 7, 2014 10:15
WordPress: example style.css file
/*
Theme Name: ThemeName
Author: John Doe @ CompanyCo LTD
Author E-mail: [email protected]
Author URI: http://john.company.com
Version: 1.0
Last Update: 12/12/2012
*/
@iladarsda
iladarsda / get_emails_by_role.php
Last active August 29, 2015 13:56
WordPress code snippets
function get_emails_by_role($role) {
$arr = array();
$args = array("role" => $role);
$users = get_users($args );
foreach ($users as $key => $value) {
$arr[] = $value->data->user_email;
}