Changeset 1548345
- Timestamp:
- 12/07/2016 10:32:46 PM (9 years ago)
- Location:
- dobsondev-shortcodes
- Files:
-
- 3 edited
- 12 copied
-
tags/2.1.4 (copied) (copied from dobsondev-shortcodes/trunk)
-
tags/2.1.4/changelog.txt (copied) (copied from dobsondev-shortcodes/trunk/changelog.txt) (2 diffs)
-
tags/2.1.4/css (copied) (copied from dobsondev-shortcodes/trunk/css)
-
tags/2.1.4/css/dobsondev-shortcodes.css (copied) (copied from dobsondev-shortcodes/trunk/css/dobsondev-shortcodes.css)
-
tags/2.1.4/css/dobsondev-shortcodes.min.css (copied) (copied from dobsondev-shortcodes/trunk/css/dobsondev-shortcodes.min.css)
-
tags/2.1.4/dobsondev-shortcodes.php (copied) (copied from dobsondev-shortcodes/trunk/dobsondev-shortcodes.php) (2 diffs)
-
tags/2.1.4/js (copied) (copied from dobsondev-shortcodes/trunk/js)
-
tags/2.1.4/js/tinymce-plugin.js (copied) (copied from dobsondev-shortcodes/trunk/js/tinymce-plugin.js)
-
tags/2.1.4/js/tinymce-plugin.min.js (copied) (copied from dobsondev-shortcodes/trunk/js/tinymce-plugin.min.js)
-
tags/2.1.4/libs (copied) (copied from dobsondev-shortcodes/trunk/libs)
-
tags/2.1.4/readme.txt (copied) (copied from dobsondev-shortcodes/trunk/readme.txt) (3 diffs)
-
tags/2.1.4/res (copied) (copied from dobsondev-shortcodes/trunk/res)
-
trunk/changelog.txt (modified) (2 diffs)
-
trunk/dobsondev-shortcodes.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dobsondev-shortcodes/tags/2.1.4/changelog.txt
r1491916 r1548345 3 3 New Features 4 4 5 * Added a shortcode for displaying a WordPress menu (2.1.4) 5 6 * Added a shortcode for displaying a social sharing section with links to share to Twitter, Facebook, Google Plus and Linkedin (2.1.1) 6 7 * Added a shortcode for embedding Vimeo videos (2.1.0) … … 12 13 Bug Fixes 13 14 15 * Tested up to WordPress 4.7 (2.1.4) 14 16 * Tested up to WordPress 4.6.1 (2.1.3) 15 17 * Fixed a bug where the Insert Code Block TinyMCE button would not use the correct syntax for the shortcode - thanks to [Chris Dillon](https://wordpress.org/support/profile/cdillon27) for catching the bug and letting me know (2.1.2) -
dobsondev-shortcodes/tags/2.1.4/dobsondev-shortcodes.php
r1491916 r1548345 4 4 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/ 5 5 * Description: A collection of helpful shortcodes. 6 * Version: 2.1. 36 * Version: 2.1.4 7 7 * Author: Alex Dobson 8 8 * Author URI: http://dobsondev.com/ … … 633 633 634 634 635 /* Adds a shortcode for displaying a menu */ 636 function dobsondev_shrtcode_menu($atts) { 637 extract(shortcode_atts(array( 638 'menu' => '', 639 'container' => 'div', 640 'container_class' => '', 641 'container_id' => '', 642 'menu_class' => 'menu', 643 'menu_id' => '', 644 'echo' => true, 645 'fallback_cb' => 'wp_page_menu', 646 'before' => '', 647 'after' => '', 648 'link_before' => '', 649 'link_after' => '', 650 'depth' => 0, 651 'walker' => '', 652 'theme_location' => '' 653 ), $atts)); 654 655 return wp_nav_menu( array( 656 'menu' => $menu, 657 'container' => $container, 658 'container_class' => $container_class, 659 'container_id' => $container_id, 660 'menu_class' => $menu_class, 661 'menu_id' => $menu_id, 662 'echo' => false, 663 'fallback_cb' => $fallback_cb, 664 'before' => $before, 665 'after' => $after, 666 'link_before' => $link_before, 667 'link_after' => $link_after, 668 'depth' => $depth, 669 'walker' => $walker, 670 'theme_location' => $theme_location 671 )); 672 } 673 add_shortcode('menu', 'dobsondev_shrtcode_menu'); 674 675 635 676 /* Adds a shortcode for displaying a simple <div> with clear both */ 636 677 function dobsondev_shrtcode_clear_div($atts) { -
dobsondev-shortcodes/tags/2.1.4/readme.txt
r1491916 r1548345 6 6 Tags: dobsondev, shortcodes, pdf, portable document format, github gists, github, gists, github readme, github project readme, github repo readme, github file contents, twitch streams, twitch, twitch tv, twitch chat, YouTube video, YouTube, inline code, code snippets, code block, programming, code examples, button, buttons, css button, css buttons, button shortcode, buttons shortcodes, user interaction, user interaction messages, info message, information message, success message, warning message, error message, related posts, related posts shortcode, jquery, jquery related posts, related posts slideshow, tinymce, tinymce plugin, user interface 7 7 Requires at least: 2.5 8 Tested up to: 4. 6.19 Stable tag: 2.1. 38 Tested up to: 4.7 9 Stable tag: 2.1.4 10 10 11 11 Add a collection of helpful shortcodes to your site. … … 178 178 New Features 179 179 180 * Added a shortcode for displaying a WordPress menu (2.1.4) 180 181 * Added a shortcode for displaying a social sharing section with links to share to Twitter, Facebook, Google Plus and Linkedin (2.1.1) 181 182 * Added a shortcode for embedding Vimeo videos (2.1.0) … … 187 188 Bug Fixes 188 189 190 * Tested up to Wordpress 4.7 (2.1.4) 189 191 * Tested up to WordPress 4.6.1 (2.1.3) 190 192 * Fixed a bug where the Insert Code Block TinyMCE button would not use the correct syntax for the shortcode - thanks to [Chris Dillon](https://wordpress.org/support/profile/cdillon27) for catching the bug and letting me know (2.1.2) -
dobsondev-shortcodes/trunk/changelog.txt
r1491916 r1548345 3 3 New Features 4 4 5 * Added a shortcode for displaying a WordPress menu (2.1.4) 5 6 * Added a shortcode for displaying a social sharing section with links to share to Twitter, Facebook, Google Plus and Linkedin (2.1.1) 6 7 * Added a shortcode for embedding Vimeo videos (2.1.0) … … 12 13 Bug Fixes 13 14 15 * Tested up to WordPress 4.7 (2.1.4) 14 16 * Tested up to WordPress 4.6.1 (2.1.3) 15 17 * Fixed a bug where the Insert Code Block TinyMCE button would not use the correct syntax for the shortcode - thanks to [Chris Dillon](https://wordpress.org/support/profile/cdillon27) for catching the bug and letting me know (2.1.2) -
dobsondev-shortcodes/trunk/dobsondev-shortcodes.php
r1491916 r1548345 4 4 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/ 5 5 * Description: A collection of helpful shortcodes. 6 * Version: 2.1. 36 * Version: 2.1.4 7 7 * Author: Alex Dobson 8 8 * Author URI: http://dobsondev.com/ … … 633 633 634 634 635 /* Adds a shortcode for displaying a menu */ 636 function dobsondev_shrtcode_menu($atts) { 637 extract(shortcode_atts(array( 638 'menu' => '', 639 'container' => 'div', 640 'container_class' => '', 641 'container_id' => '', 642 'menu_class' => 'menu', 643 'menu_id' => '', 644 'echo' => true, 645 'fallback_cb' => 'wp_page_menu', 646 'before' => '', 647 'after' => '', 648 'link_before' => '', 649 'link_after' => '', 650 'depth' => 0, 651 'walker' => '', 652 'theme_location' => '' 653 ), $atts)); 654 655 return wp_nav_menu( array( 656 'menu' => $menu, 657 'container' => $container, 658 'container_class' => $container_class, 659 'container_id' => $container_id, 660 'menu_class' => $menu_class, 661 'menu_id' => $menu_id, 662 'echo' => false, 663 'fallback_cb' => $fallback_cb, 664 'before' => $before, 665 'after' => $after, 666 'link_before' => $link_before, 667 'link_after' => $link_after, 668 'depth' => $depth, 669 'walker' => $walker, 670 'theme_location' => $theme_location 671 )); 672 } 673 add_shortcode('menu', 'dobsondev_shrtcode_menu'); 674 675 635 676 /* Adds a shortcode for displaying a simple <div> with clear both */ 636 677 function dobsondev_shrtcode_clear_div($atts) { -
dobsondev-shortcodes/trunk/readme.txt
r1491916 r1548345 6 6 Tags: dobsondev, shortcodes, pdf, portable document format, github gists, github, gists, github readme, github project readme, github repo readme, github file contents, twitch streams, twitch, twitch tv, twitch chat, YouTube video, YouTube, inline code, code snippets, code block, programming, code examples, button, buttons, css button, css buttons, button shortcode, buttons shortcodes, user interaction, user interaction messages, info message, information message, success message, warning message, error message, related posts, related posts shortcode, jquery, jquery related posts, related posts slideshow, tinymce, tinymce plugin, user interface 7 7 Requires at least: 2.5 8 Tested up to: 4. 6.19 Stable tag: 2.1. 38 Tested up to: 4.7 9 Stable tag: 2.1.4 10 10 11 11 Add a collection of helpful shortcodes to your site. … … 178 178 New Features 179 179 180 * Added a shortcode for displaying a WordPress menu (2.1.4) 180 181 * Added a shortcode for displaying a social sharing section with links to share to Twitter, Facebook, Google Plus and Linkedin (2.1.1) 181 182 * Added a shortcode for embedding Vimeo videos (2.1.0) … … 187 188 Bug Fixes 188 189 190 * Tested up to Wordpress 4.7 (2.1.4) 189 191 * Tested up to WordPress 4.6.1 (2.1.3) 190 192 * Fixed a bug where the Insert Code Block TinyMCE button would not use the correct syntax for the shortcode - thanks to [Chris Dillon](https://wordpress.org/support/profile/cdillon27) for catching the bug and letting me know (2.1.2)
Note: See TracChangeset
for help on using the changeset viewer.