Last active
December 14, 2015 07:59
-
-
Save kraftbj/5054227 to your computer and use it in GitHub Desktop.
Changing many elements in Genesis specific to a CPT
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 | |
// 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