The cool thing is a filter is the same as an action, only it returns a value, so just set it up as a filter instead:
add_filter( 'myplugin_clean_logs', array( 'MyPlugin_Logs', 'clean_logs' ) );
Then something like:
$affected_rows="";
$affected_rows = apply_filters( 'myplugin_clean_logs', $affected_rows );
should pass $affected_rows
to clean_logs()
(and whatever other functions you may have hooked to myplugin_clean_logs
) and assign the return value back to $affected_rows
.
Related Posts:
- remove_action or remove_filter with external classes?
- Why does save_post action fire when creating a new post?
- How to know what priority to use with add_action()?
- Difference between do_action_ref_array() and do_action()
- Why is there both a save_post and wp_insert_post action?
- When is admin_init Action ran?
- Can an action callback prevent the parent from continuing execution?
- How do I enqueue a script to run inside the Gutenberg editor?
- How can I find out what functions are assigned to actions?
- Disable WooCommerce action
- How can I remove the WP menu from the admin bar?
- add_action customize_register not working
- Passing arguments into ‘init’ function
- How to use conditional add_action for WordPress
- WP Schedule Event – Every Day When First Visitor Comes
- How to remove an action that is added inside a class
- add action which returns modified value
- WordPress admin WP_table_list show incorrectly
- How to add a checkbox inside the “Publish post” widget?
- What’s the usage of action do_meta_boxes?
- How can I invoke an action after a CiviCRM triggering event?
- Custom bulk actions in WP 3.7.1
- Remove action from a plugin class
- Modify query in pre_get_posts action is messing up my nav menu
- Exclude trash from save_post
- How to check if an action is already fired?
- add_action and wp_head not display content in head section
- use add_action(‘wp_head’) in a widget
- array of objects to do_action, callback gets singular object?
- Preventing frontpage to be deleted/moved to trash
- Selectively applying action based on role
- How to remove a custom action on child theme?
- Action hook on only publishing post not on editing or updating
- how can I use add_action run another function when publishing new post?
- Performance : Duplicating `add_action`
- add_action in class and use it in theme
- Better action hook for creating table than after_switch_theme and switch_theme action hook
- Adding the hook ‘vc_before_init’ inside a object
- $GLOBALS[‘hook_suffix’] variable empty
- How to apply action the_post to the post that is only being mainly displayed
- admin_notices on runtime in function
- Using several add_action with parameters inside a class
- Action hook load_textdomain $domain variable
- publish_post action hook not working
- Action hook for editing post
- add_action and do_action: multiple calls to same callback?
- Gutenberg – Dispatch action or setAttributes() on Post Save/Update action instead of onChange listener
- remove_action returns false regardless of priority
- Set a custom display_name on user_register?
- WordPress action admin_post for non-admin authenticated users – Form submission
- Instantiating classes through add_action and saving them to user_meta data [closed]
- How to make an action run in the background?
- WP cron doesn’t pass through my arguments
- how to add submenu item under parent menu item with code
- Why does my wp_safe_redirect output the ERR_TOO_MANY_REDIRECTS error?
- Re-order Woocommerce single product and echo div around moved & duplicated Woocommerce hooks
- Custom Post type forgetting data
- Insert custom postmeta when custom post type published
- Call do_action class’s function
- Create post revision on slug change
- Is dynamic action name building a bad practice?
- Can’t Get Metabox Data Saved Assistance Needed
- missing argument 2 when passing arguments to add_action
- is there an update_post_meta action
- A unique wp_schedule_single_event() for each post?
- comment_post callback function: how to run it in the background.
- Add new users to “add new user” page on admin’s dashboard
- Is this the correct way to enqueue style sheets from parent theme and then from child theme in wordpress?
- Change Post Publish Date to Post Modified Date in All Places
- Action ‘init’ function doesn’t return variable
- add_action to wp_head is added, but not called
- Where to place add_action when enqueueing?
- Insert Google authorship into WordPress header
- add_action before theme setup
- How can I get the user that publishes a post?
- add_action which contains first argument admin_print_scripts-$page
- Activity feed on admin dashboard
- update_user_meta not updating
- How do i know which action / filters are called when i call get_option()
- How can I get more out of `$post` in an `add_action` callback?
- Change or rewrite add to cart button functionality “
- Better use two dedicated methods hooked with add_action() to different actions, or can it be twice the same method?
- admin_notices is not working inside function
- Call to Action Button – Resize Help [closed]
- Best hook for when a user session ends?
- Translate are not working for standard admin
- How to override parent theme actions
- add_action init breaks site on PHP 7.1
- Can I run a slow action in a seperate thread?
- Font Awesome not loaded on first page of website only – divi theme
- action future_post returns wrong date
- Hook into admin_notices after sending mail
- WordPress’ work or execution flow manipulating $wpdb
- Add-action in function
- Building WP Web App: Creating a Feed for post revisions
- Can admin_bar_menu or another action be used to modify the admin bar on the admin side?
- Plugin that generates a page of post content
- Using add action for class with construct
- Webhook: save_post action fires wp_remote_post twice
- A way to see real changes of posts inside an action?