/ Published in: PHP
Expand |
Embed | Plain Text
function box_shortcode( $atts, $content = null ) { 'color' => 'yellow', 'size' => 'medium', ), $atts ) ); return ' <style type="text/css"> .shortcode_box { padding: 2px 4px; border: 1px solid #ccc; } .yellow { background: #ffd149; color: #666; } .blue { background: #a0c5ef; color: #333; } .gray { background: #f0f0f0; color: #333; } </style> <div class="shortcode_box ' . $size . ' ' . $color . '">' . $content . '</div>'; } add_shortcode('box', 'box_shortcode'); function button_shortcode( $atts, $content = null ) { 'color' => 'blue', 'size' => 'medium', ), $atts ) ); return ' <style type="text/css"> .shortcode_button { padding: 2px 8px; border: 1px solid #ccc; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; } .black { background: #ffd149; background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#636363), to(#332F2F)); background: -moz-linear-gradient(19% 75% 90deg,#332F2F, #636363); color: #f0f0f0; border-top-color: #1c1c1c; border-left-color: #1c1c1c; border-right-color: #525252; border-bottom-color: #525252; } .blue { background: #a0c5ef; background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#508BC7), to(#203F75)); background: -moz-linear-gradient(19% 75% 90deg,#203F75, #508BC7); color: #f0f0f0; border-top-color: #023778; border-left-color: #023778; border-right-color: #26609e; border-bottom-color: #26609e; } .large { width: 200px; } .medium { width: 120px; } .small { width: 80px; } </style> <div class="shortcode_button ' . $size . ' ' . $color . '">' . $content . '</div>'; } add_shortcode('button', 'button_shortcode'); add_filter('the_content', 'do_shortcode'); [box color=blue]Porta ultricies. Amet odio amet, pellentesque elementum adipiscing sagittis enim, eu, proin placerat sed pid cum? Dictumst turpis integer. Adipiscing, porttitor scelerisque! Lorem turpis porttitor. Integer in, odio mattis ac! Nascetur augue odio in risus, arcu nunc, phasellus ultrices lectus velit, et tincidunt tristique. Integer vel pulvinar purus magnis. [button color=black size=small]<a href="#">Download[/button][/box]
You need to login to post a comment.
