Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function td_quote_center($atts, $content = null) {
- return '<blockquote><p>' . $content . '</p></blockquote>' ;
- }
- add_shortcode('quote_center', 'td_quote_center');
- function td_quote_right($atts, $content = null) {
- return '<blockquote class="td_quote td_quote_right"><p>' . $content . '</p></blockquote>' ;
- }
- add_shortcode('quote_right', 'td_quote_right');
- function td_quote_left($atts, $content = null) {
- return '<blockquote class="td_quote td_quote_left"><p>' . $content . '</p></blockquote>' ;
- }
- add_shortcode('quote_left', 'td_quote_left');
- function td_quote_box_center($atts, $content = null) {
- return '<blockquote class="td_quote_box td_box_center"><p>' . $content . '</p></blockquote>' ;
- }
- add_shortcode('quote_box_center', 'td_quote_box_center');
- function td_quote_box_left($atts, $content = null) {
- return '<blockquote class="td_quote_box td_box_left"><p>' . $content . '</p></blockquote>' ;
- }
- add_shortcode('quote_box_left', 'td_quote_box_left');
- function td_quote_box_right($atts, $content = null) {
- return '<blockquote class="td_quote_box td_box_right"><p>' . $content . '</p></blockquote>' ;
- }
- add_shortcode('quote_box_right', 'td_quote_box_right');
- function td_pull_quote_center($atts, $content = null) {
- return '<blockquote class="td_pull_quote td_pull_center"><p>' . $content . '</p></blockquote>' ;
- }
- add_shortcode('pull_quote_center', 'td_pull_quote_center');
- function td_pull_quote_left($atts, $content = null) {
- return '<blockquote class="td_pull_quote td_pull_left"><p>' . $content . '</p></blockquote>' ;
- }
- add_shortcode('pull_quote_left', 'td_pull_quote_left');
- function td_pull_quote_right($atts, $content = null) {
- return '<blockquote class="td_pull_quote td_pull_right"><p>' . $content . '</p></blockquote>' ;
- }
- add_shortcode('pull_quote_right', 'td_pull_quote_right');
Advertisement
Add Comment
Please, Sign In to add comment