Created
March 9, 2020 08:57
-
-
Save norilog4/7132e058e46911dffd42c953d58476d0 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
/*赤い光るボタンをショートコード化*/ | |
function ShinyBtn( $atts, $content = null ) { | |
return '<div class="red-shiny">' . $content . '</div>'; | |
} | |
add_shortcode('redshiny', 'ShinyBtn'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
⬇️このコードの使い方を紹介しているブログ記事はこちら
https://noripon.blog/2020/03/09/how-to-make-wordpress-shortcode-css-shiny-button/