This file contains 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
$styles = get_post_meta($post->ID, 'it_classroom_style_taxonomy',true) ; | |
echo $styles[0]; | |
$style = get_term_by( 'id', $styles[0], 'style' );//get_term($styles[0], 'style'); | |
print_r($style); | |
echo $style->name; |
This file contains 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 | |
/** Remove the Genesis Featured Post widget */ | |
add_action( 'widgets_init', 'faculty_unregister_widgets' ); | |
function faculty_unregister_widgets() { | |
unregister_widget( 'Genesis_Featured_Post' ); | |
unregister_widget( 'Genesis_Featured_Page' ); | |
} | |
add_action('widgets_init', create_function('', "register_widget('Faculty_Featured_Post');")); | |
add_action('widgets_init', create_function('', "register_widget('Faculty_Featured_Page');")); |
This file contains 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
#HTML5 DOCTYPE | |
remove_action( 'genesis_doctype', 'genesis_do_doctype' ); | |
add_action( 'genesis_doctype', create_function( '', 'echo "<!DOCTYPE html><html><head>";' ) ); |
This file contains 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 | |
/** | |
* Post Types | |
* | |
* This file registers any custom post types | |
* | |
* @package dorman-farrell | |
* @author The Pedestal Group <[email protected]> | |
* @copyright Copyright (c) 2012, Dorman Farrell | |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
This file contains 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 | |
error_reporting(E_ALL); | |
/* | |
Plugin Name: __pluginname__ | |
Plugin URI: http://orthogonalcreations.com | |
Description: __description__ | |
Author: Jon Breitenbucher | |
Author URI: http://orthogonalcreations.com | |
Version: __version__ |
This file contains 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
class JB-__Class Name__ extends WP_Widget { | |
function __construct() | |
{ | |
$params = array( | |
'description' => '', | |
'name' => '' | |
); | |
parent::__contruct('','',$params); |
This file contains 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
class __JB_Options__ { | |
public __construct() | |
{ | |
} | |
public add_menu_page() | |
{ | |
add_options_page('__Menu Name__','__Menu Name___','administrator',__FILE__,array('__JB_Options__','display_options_page'); |
This file contains 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 | |
/** | |
* Child Theme Settings | |
* Requires Genesis 1.8 or later | |
* | |
* This file registers all of this child theme's specific Theme Settings, accessible from | |
* Genesis > Child Theme Settings. | |
* | |
* @package BE Genesis Child | |
* @author Bill Erickson <[email protected]> |
This file contains 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
<FilesMatch "\.(oga | ogg | m4a | ogv | mp4 | m4v | webm)$" > | |
<IfModule mod_headers.c> | |
Header append Vary User-Agent env=!dont-vary | |
Header append Vary Host env=!dont-vary | |
Header append Vary Accept-Encoding env=!dont-vary | |
</IfModule> | |
</FilesMatch> |
This file contains 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 jb_remove_menus_by_role () { | |
global $menu; | |
global $current_user; | |
$user_roles = $current_user->roles; | |
$user_role = array_shift($user_roles); | |
if($user_role == 'xxx') { | |
$restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins')); | |
end ($menu); | |
while (prev($menu)){ | |
$value = explode(' ',$menu[key($menu)][0]); |
OlderNewer