From 25eef48115c997570e548125b08fe1f709b4e8aa Mon Sep 17 00:00:00 2001 From: MickeyKay Date: Thu, 26 Jun 2014 12:57:55 -0700 Subject: [PATCH] Temporarily comment out trestle_post_info_meta() functionality as it is causing posts to sporadically change type. --- README.md | 2 +- functions.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d61b9af..4349b3c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Trestle takes a lot of the grunt work out of building sites using the Genesis Fr Here are some of Trestle's many features, check out the [Trestle Demo](http://demo.mightyminnow.com/theme/trestle/) for a full list. * Responsive navigation menu * Mobile first CSS -* Custom control over post info and meta +* ~~Custom control over post info and meta~~ (temporarily absent while we fix a bug) * Multiple page layouts * Auto-generating primary navigation * Ability to auto-install your favorite plugins diff --git a/functions.php b/functions.php index bc1e7fa..0d0d8d4 100644 --- a/functions.php +++ b/functions.php @@ -100,7 +100,8 @@ function trestle_theme_setup() { add_filter( 'wp_revisions_to_keep', 'trestle_update_revisions_number', 10, 2 ); // Manually control where Post Info & Meta display - add_action( 'the_post', 'trestle_post_info_meta', 0 ); + /* @TODO: temporarily commented this line out because it's causing posts to randomly switch post type! */ + //add_action( 'the_post', 'trestle_post_info_meta', 0 ); // Remove default featured image fallback of 'first-attached' add_filter( 'genesis_get_image_default_args', 'trestle_featured_image_fallback' );