This file contains hidden or 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 | |
| /** | |
| * Metaboxes | |
| * | |
| * This file registers any custom metaboxes | |
| * | |
| * @package mcedc | |
| * @author The Pedestal Group <kathy@thepedestalgroup.com> | |
| * @copyright Copyright (c) 2012, Medina County Economic Development Corporation | |
| * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
This file contains hidden or 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
| /** | |
| * Make sure to order staff on role term pages alphabetically by last name | |
| * | |
| * @author Jon Breitenbucher <jbreitenbucher@wooster.edu> | |
| * @version SVN: $Id$ | |
| * @param array $query Default query arguments | |
| * @return array modified query arguments | |
| * | |
| * @since 2.0 | |
| * |
This file contains hidden or 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 get_custom_archive_template($template) { | |
| global $wp_query; | |
| $object = $wp_query->get_queried_object(); | |
| if ( 'gslstaff' == $object->post_type ) { | |
| $templates = array(); | |
| if ( $object->post_type ) | |
| $templates[] = "archive-{$object->post_type}.php"; | |
| $templates[] = 'archive.php'; |
This file contains hidden or 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: Genesis Staff Listing | |
| Plugin URI: http://orthogonalcreations.com | |
| Description: This plugin adds a Staff custom post type and role taxonomy. It also includes templates for displaying the Staff post type. | |
| Author: Jon Breitenbucher | |
| Author URI: http://orthogonalcreations.com | |
| Version: 1.1 |
This file contains hidden or 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
| /* Limit Your Website Excerpt */ | |
| function word_limit($string, $max_words){ | |
| $post_words = explode(' ', $string); | |
| $count = count($post_words); | |
| $post_words = implode(' ', array_slice($post_words, 0, $max_words)); |
OlderNewer