/ Published in: PHP

add_filter in plugin
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
public function run() { foreach ( $this->filters as $hook ) { add_filter( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] ); } foreach ( $this->actions as $hook ) { add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] ); } /* Adding custom filter to change the Post Title palceholder text */ function change_title_text( $title ) { $screen = get_current_screen(); if ( 'child_sponsorship' == $screen->post_type ) { $title = 'Enter child name'; } return $title; } add_filter( 'enter_title_here', 'change_title_text' ); }
Comments
