Skip to content

Instantly share code, notes, and snippets.

@tripflex
Last active October 12, 2015 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/0b50196de02b325330fc to your computer and use it in GitHub Desktop.
Save tripflex/0b50196de02b325330fc to your computer and use it in GitHub Desktop.
Remove preview step from WP Job Manager (only for suggestion, code is untested)
<?php
add_filter( 'submit_job_steps', 'my_custom_remove_preview_step' );
function my_custom_remove_preview_step( $steps ){
if( isset( $steps['preview'] ) ) unset( $steps['preview'] );
return $steps;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment