Skip to content

Instantly share code, notes, and snippets.

@wadadanet
Last active September 27, 2019 07:36
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 wadadanet/b352b54814710886715be884cd559164 to your computer and use it in GitHub Desktop.
Save wadadanet/b352b54814710886715be884cd559164 to your computer and use it in GitHub Desktop.
wordpress shortcode "not break"
function shortcode_not_break($atts, $content = null){
return do_shortcode(preg_replace('/(]<br>|]<br \/>)/', ']', $content));
}
add_shortcode('not_break', 'shortcode_not_break');
<!-- 実装 -->
[not_break]
[row]
[col][image src="hogehoge.jpg"][/col]
[col][image src="hogehoge.jpg"][/col]
[col][image src="hogehoge.jpg"][/col]
[/row]
[/not_break]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment