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

@@ -29,4 +29,3 @@ function sp_admin_menu( $position ) {
unset( $submenu['edit.php?post_type=sp_staff'][15] );
}
add_action( 'admin_menu', 'sp_admin_menu' );
?>

View File

@@ -3,4 +3,3 @@ function sp_after_theme_setup() {
add_theme_support( 'post-thumbnails' );
}
add_action( 'after_theme_setup', 'sp_after_theme_setup' );
?>

View File

@@ -3,4 +3,3 @@ function sp_manage_posts_columns() {
sp_highlight_admin_menu();
}
add_action( 'manage_posts_columns', 'sp_manage_posts_columns' );
?>

View File

@@ -83,4 +83,3 @@ function sp_manage_posts_custom_column( $column, $post_id ) {
}
add_action( 'manage_posts_custom_column', 'sp_manage_posts_custom_column', 10, 2 );
add_action( 'manage_pages_custom_column', 'sp_manage_posts_custom_column', 10, 2 );
?>

View File

@@ -4,4 +4,3 @@ function sp_plugins_loaded() {
add_image_size( 'sp_icon', 32, 32, false );
}
add_action( 'plugins_loaded', 'sp_plugins_loaded' );
?>

View File

@@ -12,4 +12,3 @@ function sp_post_thumbnail_html( $html, $post_id, $post_thumbnail_id, $size, $at
return $html;
}
add_filter( 'post_thumbnail_html', 'sp_post_thumbnail_html', 10, 5 );
?>

View File

@@ -34,4 +34,3 @@ function sp_restrict_manage_posts() {
endif;
}
add_action( 'restrict_manage_posts', 'sp_restrict_manage_posts' );
?>

View File

@@ -134,4 +134,3 @@ function sp_save_post( $post_id ) {
endswitch;
}
add_action( 'save_post', 'sp_save_post' );
?>