Skip to content

Instantly share code, notes, and snippets.

@paulmiller3000
Created October 8, 2019 18:50
Show Gist options
  • Save paulmiller3000/62a1a6e3a95f9c926dae25d511353783 to your computer and use it in GitHub Desktop.
Save paulmiller3000/62a1a6e3a95f9c926dae25d511353783 to your computer and use it in GitHub Desktop.
/**
* Get sections.
*
* @return array
*/
public function get_sections() {
$sections = array(
'' => __( 'Settings', 'p3k-galactica' ),
'log' => __( 'Log', 'p3k-galactica' ),
'results' => __( 'Sale Results', 'p3k-galactica' )
);
return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment