Remove closing PHP tags
This commit is contained in:
@@ -24,4 +24,3 @@ function sp_admin_post_thumbnail_html( $translated_text, $post_id ) {
|
||||
return $translated_text;
|
||||
}
|
||||
add_filter( 'admin_post_thumbnail_html', 'sp_admin_post_thumbnail_html', 10, 2 );
|
||||
?>
|
||||
@@ -41,4 +41,3 @@ function sp_gettext( $translated_text, $untranslated_text, $domain ) {
|
||||
return $translated_text;
|
||||
}
|
||||
add_filter( 'gettext', 'sp_gettext', 20, 3 );
|
||||
?>
|
||||
@@ -13,4 +13,3 @@ function sp_pre_get_posts( $wp_query ) {
|
||||
endif;
|
||||
}
|
||||
add_filter('pre_get_posts', 'sp_pre_get_posts');
|
||||
?>
|
||||
@@ -23,4 +23,3 @@ function sp_sanitize_title( $title ) {
|
||||
return $title;
|
||||
}
|
||||
add_filter( 'sanitize_title', 'sp_sanitize_title' );
|
||||
?>
|
||||
@@ -21,4 +21,3 @@ function sportspress_the_content( $content ) {
|
||||
return $content;
|
||||
}
|
||||
add_filter('the_content', 'sportspress_the_content');
|
||||
?>
|
||||
@@ -17,4 +17,3 @@ function sp_insert_post_data( $data, $postarr ) {
|
||||
return $data;
|
||||
}
|
||||
add_filter( 'wp_insert_post_data' , 'sp_insert_post_data' , '99', 2 );
|
||||
?>
|
||||
Reference in New Issue
Block a user