See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| <?php | |
| /* | |
| Load selected posts, strip out Visual Composer shortcodes leaving the content intact and update the post again. | |
| */ | |
| require('wp-load.php'); | |
| require_once('wp-includes/functions.php'); | |
| require_once('wp-includes/shortcodes.php'); |
| UPDATE `wp_postmeta` | |
| SET meta_value='taxable' | |
| WHERE meta_key='_tax_status' |
| <?php | |
| add_action('media_buttons' , 'ts_shortcoder_button', 11); | |
| function ts_shortcoder_button(){ | |
| $shortcoder_button_image = THEME_CORE_URL . '/images/shortcoder_icon.png'; | |
| $shortcoder_button = ' %s'; | |
| echo '<a title = "' . __('Insert a Shortcode' , TS_DOMAIN) . '" href="' . THEME_CORE_URL . '/shortcoder/shortcoder.php?init=true&TB_iframe=true&width=500" class="thickbox"><img src = "' . $shortcoder_button_image . '" /></a>'; | |
| } |