Created
November 9, 2016 21:28
-
-
Save yogasukma/c02065f3af3069ea3ee11212485bfe94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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