Veran el sitio esta en Wordpress y tengo un plugin que me da la siguiente funcion
Código PHP:
switch ( $job->post_status ) {
case 'publish' :
$actions['edit'] = array( 'label' => __( 'Editar', 'wp-job-manager' ), 'nonce' => false );
if ( is_position_filled( $job ) ) {
$actions['mark_not_filled'] = array( 'label' => __( 'No aceptada', 'wp-job-manager' ), 'nonce' => true );
} else {
$actions['mark_filled'] = array( 'label' => __( 'Aceptar', 'wp-job-manager' ), 'nonce' => true );
}