start_controls_section( 'filter_opt', [ 'label' => __( 'Filter Options', 'bbp-core' ), ] ); $this->add_control( 'ppp', [ 'label' => esc_html__( 'Show Forum Topics', 'bbp-core' ), 'type' => Controls_Manager::NUMBER, 'default' => 5 ] ); $this->add_control( 'order', [ 'label' => esc_html__( 'Order', 'bbp-core' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'ASC' => 'ASC', 'DESC' => 'DESC' ], 'default' => 'ASC' ] ); $this->end_controls_section(); // end Document Setting Section } protected function render() { $settings = $this->get_settings(); $forum_posts = new WP_Query( array( 'post_type' => 'topic', 'posts_per_page' => ! empty( $settings['ppp'] ) ? $settings['ppp'] : - 1, 'order' => $settings['order'] ? $settings['order'] : 'ASC', ) ); ?>