if ( ! function_exists( 'themewich_section_edit' ) ) : /** * Echos edit section button * * @since Edition 1.0 * @return void */ function themewich_section_edit() { // Dont' display if the user isn't logged in if ( ! is_user_logged_in() || ! current_user_can( 'edit_posts' ) ) { return; } global $post; echo '
' . __('Edit Section', 'themewich') . '
'; } endif;