Remove closing PHP tags

This commit is contained in:
Brian Miyaji
2014-01-07 11:20:43 +11:00
parent 79b6ae5806
commit 98dcd69b33
45 changed files with 13 additions and 49 deletions

View File

@@ -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 );
?>

View File

@@ -41,4 +41,3 @@ function sp_gettext( $translated_text, $untranslated_text, $domain ) {
return $translated_text;
}
add_filter( 'gettext', 'sp_gettext', 20, 3 );
?>

View File

@@ -13,4 +13,3 @@ function sp_pre_get_posts( $wp_query ) {
endif;
}
add_filter('pre_get_posts', 'sp_pre_get_posts');
?>

View File

@@ -23,4 +23,3 @@ function sp_sanitize_title( $title ) {
return $title;
}
add_filter( 'sanitize_title', 'sp_sanitize_title' );
?>

View File

@@ -21,4 +21,3 @@ function sportspress_the_content( $content ) {
return $content;
}
add_filter('the_content', 'sportspress_the_content');
?>

View File

@@ -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 );
?>