Skip to content

Instantly share code, notes, and snippets.

@kibus90
kibus90 / new-dashboard-action.php
Created May 30, 2020 15:31 — forked from jonasvogel/new-dashboard-action.php
WP Job Manager: Test new filter for job dashboard actions which allows success message
<?php
namespace JobManager;
add_filter( 'job_manager_my_job_actions', __NAMESPACE__ . '\\add_expire_action', 10, 2 );
function add_expire_action( $actions, $job_id ) {
if ( ! function_exists( __NAMESPACE__ . '\\handle_expire_action' ) ) {
return $actions;