From 2c49b647f7cb37dd7ee60cf7ca90fb14bbe68f7f Mon Sep 17 00:00:00 2001 From: Aristeides Stathopoulos Date: Wed, 14 Mar 2018 19:46:10 +0200 Subject: [PATCH] Apply WordPress Coding Standards --- docs/docs/advanced/kirki-helper-class.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/docs/advanced/kirki-helper-class.md b/docs/docs/advanced/kirki-helper-class.md index 74fda8fdb..dadaf5349 100644 --- a/docs/docs/advanced/kirki-helper-class.md +++ b/docs/docs/advanced/kirki-helper-class.md @@ -143,14 +143,14 @@ Example: ```php add_action( 'init', function() { - Kirki::add_field( 'my_settings', array( - 'type' => 'select', - 'settings' => 'my_setting', - 'label' => __( 'This is the label', 'my_textdomain' ), - 'section' => 'title_tagline', - 'default' => '', - 'priority' => 10, - 'choices' => Kirki_Helper::get_terms( 'product_cat' ), + Kirki::add_field( 'my_settings', array( + 'type' => 'select', + 'settings' => 'my_setting', + 'label' => __( 'This is the label', 'my_textdomain' ), + 'section' => 'title_tagline', + 'default' => '', + 'priority' => 10, + 'choices' => Kirki_Helper::get_terms( 'product_cat' ), ) ); -}); +} ); ```