Skip to content

Instantly share code, notes, and snippets.

@yogasukma
Created November 9, 2016 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yogasukma/c02065f3af3069ea3ee11212485bfe94 to your computer and use it in GitHub Desktop.
Save yogasukma/c02065f3af3069ea3ee11212485bfe94 to your computer and use it in GitHub Desktop.
<option
<?php if ( $global['button_style'] == 'icon-text' ) {
echo ' selected="selected"';
}?> value="icon-text"><?php _e( 'Icon + text', 'jetpack' ); ?></option>
<option
<?php if ( $global['button_style'] == 'icon' ) {
echo ' selected="selected"';
} ?> value="icon"><?php _e( 'Icon only', 'jetpack' ); ?></option>
<option
<?php if ( $global['button_style'] == 'text' ) {
echo ' selected="selected"';
}?> value="text"><?php _e( 'Text only', 'jetpack' ); ?></option>
<option
<?php if ( $global['button_style'] == 'official' ) {
echo ' selected="selected"';
}?> value="official"><?php _e( 'Official buttons', 'jetpack' ); ?></option>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment