Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Last active December 14, 2015 07:59
Show Gist options
  • Save kraftbj/5054227 to your computer and use it in GitHub Desktop.
Save kraftbj/5054227 to your computer and use it in GitHub Desktop.
Changing many elements in Genesis specific to a CPT
<?php
// all of the various add/remove functions
add_filter( 'genesis_comment_form_args', 'custom_cpt_comment_form_args' );
remove_action('genesis_post_title', 'genesis_do_post_title');
// custom functions start here
function custom_cpt_comment_form_args($args) {
$args['title_reply'] = 'Blog Me!';
return $args;
}
genesis();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment