Tagged Questions
0
votes
2answers
1k views
Default or Preset Content for Custom Post Types
I am trying to modify the code for default content to display based on post type, but so far I have been unsuccesful. The base code is:
add_filter( 'default_content', 'my_editor_content' );
...
1
vote
1answer
155 views
Change comments form title on a page by page basis
I'm looking to change the comments form title (my theme defaults this to "Leave a Comment" or "Leave a reply to").
I thought perhaps I could add a hook to comment_form_defaults but my snippet below ...