LLMS_Admin_Meta_Boxes::save_meta_boxes( $post_id, $post )
Global Metabox Save
Parameters Parameters
- $post,
-
(Required) $post_id
Return Return
(void)
Source Source
File: includes/admin/post-types/class.llms.meta.boxes.php
public function save_meta_boxes( $post_id, $post ) { if ( self::validate_post( $post_id, $post ) ) { if ( self::is_llms_post_type( $post ) ) { do_action( 'lifterlms_process_' . $post->post_type . '_meta', $post_id, $post ); } } }
Expand full source code Collapse full source code View on GitHub