post_type = esc_attr( $post_type );
parent::__construct( $manager, $id, $args );
}
/**
* Render content.
*
* @since 0.1
*/
public function render_content() {
$testimonials = get_posts( array( 'post_type' => $this->post_type ) );
?>
taxonomy = esc_attr( $taxonomy );
parent::__construct( $manager, $id, $args );
}
/**
* Render content.
*
* @since 0.1
*/
public function render_content() {
$tax_args = array(
'hierarchical' => 0,
'taxonomy' => $this->taxonomy,
);
$taxonomies = get_categories( $tax_args );
?>