LLMS_Section::set_order( $order )
Set parent section Set’s parent section in database
Description Description
Parameters Parameters
- $meta
-
([int]) (Required) [id section post]
Return Return
([mixed]) $meta [if mta didn't exist returns the meta_id else t/f if update success] Returns False if section id is already parent
Source Source
File: includes/models/model.llms.section.php
public function set_order( $order ) { return update_post_meta( $this->id, '_llms_order', $order ); }
Expand full source code Collapse full source code View on GitHub