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 my_excerpt_length( $length ) { | |
| return 36; | |
| } | |
| add_filter( 'excerpt_length', 'my_excerpt_length' ); |
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 | |
| /** | |
| * Get theme version number from WP_Theme object (cached) | |
| */ | |
| function gpp_get_theme_version() { | |
| $theme_file = get_template_directory() . '/style.css'; | |
| $theme = new WP_Theme( basename( dirname( $theme_file ) ), dirname( dirname( $theme_file ) ) ); | |
| return $theme->get( 'Version' ); |
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 | |
| /** | |
| * Plugin Name: GPP Bulk Convert Post Meta Once | |
| * Plugin URI: http://graphpaperpress.com | |
| * Description: Converts post meta from one key format to another | |
| * Author: Thad Allender | |
| * Author URI: http://graphpaperpress.com | |
| * Version: 1.0 | |
| * Text Domain: gpp |
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 custom_taxonomy_post_class( $classes, $class, $ID ) { | |
| $taxonomy = 'pcategory'; | |
| $terms = get_the_terms( (int) $ID, $taxonomy ); | |
| if( !empty( $terms ) ) { | |
| foreach( (array) $terms as $order => $term ) { |
NewerOlder