Plugin Directory

Changeset 1548345


Ignore:
Timestamp:
12/07/2016 10:32:46 PM (9 years ago)
Author:
DobsonDev
Message:

Tagging version 2.1.4

Location:
dobsondev-shortcodes
Files:
3 edited
12 copied

Legend:

Unmodified
Added
Removed
  • dobsondev-shortcodes/tags/2.1.4/changelog.txt

    r1491916 r1548345  
    33New Features
    44
     5* Added a shortcode for displaying a WordPress menu (2.1.4)
    56* Added a shortcode for displaying a social sharing section with links to share to Twitter, Facebook, Google Plus and Linkedin (2.1.1)
    67* Added a shortcode for embedding Vimeo videos (2.1.0)
     
    1213Bug Fixes
    1314
     15* Tested up to WordPress 4.7 (2.1.4)
    1416* Tested up to WordPress 4.6.1 (2.1.3)
    1517* 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  
    44 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/
    55 * Description: A collection of helpful shortcodes.
    6  * Version: 2.1.3
     6 * Version: 2.1.4
    77 * Author: Alex Dobson
    88 * Author URI: http://dobsondev.com/
     
    633633
    634634
     635/* Adds a shortcode for displaying a menu */
     636function 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}
     673add_shortcode('menu', 'dobsondev_shrtcode_menu');
     674
     675
    635676/* Adds a shortcode for displaying a simple <div> with clear both */
    636677function dobsondev_shrtcode_clear_div($atts) {
  • dobsondev-shortcodes/tags/2.1.4/readme.txt

    r1491916 r1548345  
    66Tags: 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
    77Requires at least: 2.5
    8 Tested up to: 4.6.1
    9 Stable tag: 2.1.3
     8Tested up to: 4.7
     9Stable tag: 2.1.4
    1010
    1111Add a collection of helpful shortcodes to your site.
     
    178178New Features
    179179
     180* Added a shortcode for displaying a WordPress menu (2.1.4)
    180181* Added a shortcode for displaying a social sharing section with links to share to Twitter, Facebook, Google Plus and Linkedin (2.1.1)
    181182* Added a shortcode for embedding Vimeo videos (2.1.0)
     
    187188Bug Fixes
    188189
     190* Tested up to Wordpress 4.7 (2.1.4)
    189191* Tested up to WordPress 4.6.1 (2.1.3)
    190192* 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  
    33New Features
    44
     5* Added a shortcode for displaying a WordPress menu (2.1.4)
    56* Added a shortcode for displaying a social sharing section with links to share to Twitter, Facebook, Google Plus and Linkedin (2.1.1)
    67* Added a shortcode for embedding Vimeo videos (2.1.0)
     
    1213Bug Fixes
    1314
     15* Tested up to WordPress 4.7 (2.1.4)
    1416* Tested up to WordPress 4.6.1 (2.1.3)
    1517* 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  
    44 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/
    55 * Description: A collection of helpful shortcodes.
    6  * Version: 2.1.3
     6 * Version: 2.1.4
    77 * Author: Alex Dobson
    88 * Author URI: http://dobsondev.com/
     
    633633
    634634
     635/* Adds a shortcode for displaying a menu */
     636function 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}
     673add_shortcode('menu', 'dobsondev_shrtcode_menu');
     674
     675
    635676/* Adds a shortcode for displaying a simple <div> with clear both */
    636677function dobsondev_shrtcode_clear_div($atts) {
  • dobsondev-shortcodes/trunk/readme.txt

    r1491916 r1548345  
    66Tags: 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
    77Requires at least: 2.5
    8 Tested up to: 4.6.1
    9 Stable tag: 2.1.3
     8Tested up to: 4.7
     9Stable tag: 2.1.4
    1010
    1111Add a collection of helpful shortcodes to your site.
     
    178178New Features
    179179
     180* Added a shortcode for displaying a WordPress menu (2.1.4)
    180181* Added a shortcode for displaying a social sharing section with links to share to Twitter, Facebook, Google Plus and Linkedin (2.1.1)
    181182* Added a shortcode for embedding Vimeo videos (2.1.0)
     
    187188Bug Fixes
    188189
     190* Tested up to Wordpress 4.7 (2.1.4)
    189191* Tested up to WordPress 4.6.1 (2.1.3)
    190192* 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.