Skip to content

Instantly share code, notes, and snippets.

@norilog4
Created March 9, 2020 09:00
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 norilog4/1e5a85a97d78b345525f135ce912097e to your computer and use it in GitHub Desktop.
Save norilog4/1e5a85a97d78b345525f135ce912097e to your computer and use it in GitHub Desktop.
緑色ボタンのショートコードを追加
/*緑の光るボタンをショートコード化*/
function shinygreen( $atts, $content = null ) {
return '<div class="green-shiny">' . $content . '</div>';
}
add_shortcode('greenshiny', 'shinygreen');
@norilog4
Copy link
Author

norilog4 commented Mar 9, 2020

⬇️このコードの使い方を紹介しているブログ記事はこちら
https://noripon.blog/2020/03/09/how-to-make-wordpress-shortcode-css-shiny-button/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment