Description This hook is triggered after editing a package from front end. If you want to notify admin after editing a package from front end, you can use this hook. Parameters Two arguments are passed to this hook. Usage <?php add_action(‘edit_package_frontend’,’notify_admin’,10,2); ?> Examples <?php add_action(‘edit_package_frontend’,’notify_admin’,10,2); function notify_admin($package_id, $package_data){ $edit = “<a href='”.get_edit_post_link( $package_id).”‘>Edit Package</a><br/>”; $view … Continue reading edit_package_frontend
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed