Changeset 1429687
- Timestamp:
- 06/03/2016 07:59:50 AM (10 years ago)
- Location:
- responsive-slider/trunk
- Files:
-
- 1 deleted
- 3 edited
-
docs/readme.html (modified) (2 diffs)
-
images/slides-icon.png (deleted)
-
readme.txt (modified) (3 diffs)
-
responsive-slider.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
responsive-slider/trunk/docs/readme.html
r657684 r1429687 52 52 53 53 <p> 54 Then you may want to check the <a href="http://de vpress.com/demo/responsive-slider/">Slider Demo</a> we've set - it would give you an idea what is possible to achieve with <em>Responsive Slider</em>.54 Then you may want to check the <a href="http://demo.alienwp.com/responsive-slider/">Slider Demo</a> we've set - it would give you an idea what is possible to achieve with <em>Responsive Slider</em>. 55 55 </p> 56 56 57 57 <h2>Support</h2> 58 <p>This plugin is supported at <a href="http:// devpress.com">DevPress</a> - a WordPress community of developers, designers, and professional WordPress users.</p>58 <p>This plugin is supported at <a href="http://alienwp.com">AlienWP</a> - A WordPress Theme and Plugin Company.</p> 59 59 60 60 <h2>Credits</h2> … … 69 69 </p> 70 70 <p> 71 This plugin is copyrighted to <a href="http:// devpress.com">DevPress</a>.71 This plugin is copyrighted to <a href="http://alienwp.com">AlienWP</a>. 72 72 </p> 73 73 </div> -
responsive-slider/trunk/readme.txt
r657684 r1429687 4 4 Tags: slider, responsive, flex slider, flexslider, slides, jquery slider, slideshow 5 5 Requires at least: 3.3 6 Tested up to: 3.57 Stable tag: 0.1. 86 Tested up to: 4.5.2 7 Stable tag: 0.1.9 8 8 9 9 A responsive slider for integrating into themes via a simple shortcode. … … 13 13 The *Responsive Slider* plugin allows you to create slides that consist of linked (to any url) images and titles. The slider would then take those slides and present them as a jQuery-powered slideshow - at a chosen location within your theme, page, or post. In whatever order you want them. 14 14 15 Check out the Demo to see the plugin in action: 15 16 **[See the Demo](http://demo.alienwp.com/responsive-slider/)** 17 18 > Upgrade to a paid membership for support, themes & Pro version of plugin: 19 > **[Upgrade for Support](http://alienwp.com/register/)** 16 20 17 21 The main purpose of the *Responsive Slider* is to serve as an effective addition to **responsive WordPress themes**, as it would automatically adjust to its container. This would work out of the box - there is no need for additional CSS or JavaScript tweaks from your theme. … … 56 60 == Changelog == 57 61 62 = 0.1.9 = 63 * Updated some links, documentation in preparation for new version of plugin along with pro version 64 58 65 = 0.1.8 = 59 66 * Fix: omit the anchor tag if the 'URL' field is empty. -
responsive-slider/trunk/responsive-slider.php
r657684 r1429687 3 3 * Plugin Name: Responsive Slider 4 4 * Plugin URI: http://alienwp.com/plugins/responsive-slider 5 * Description: A responsive content slider for integrating into themes via a simple shortcode.6 * Version: 0.1. 85 * Description: A responsive content slider for integrating into themes, pages and posts via a simple shortcode. 6 * Version: 0.1.9 7 7 * Author: AlienWP 8 8 * Author URI: http://alienwp.com … … 59 59 /* Enqueue the JavaScript. */ 60 60 add_action( 'template_redirect', 'responsive_slider_enqueue_scripts' ); 61 62 /* Custom post type icon. */ 63 add_action( 'admin_head', 'responsive_slider_cpt_icon' ); 61 64 62 65 63 /* Add image sizes */ … … 146 144 'not_found_in_trash' => __( 'No Slide found in Trash', 'responsive-slider' ), 147 145 'parent_item_colon' => '' 146 148 147 ); 149 148 … … 162 161 'taxonomies' => array(), 163 162 'has_archive' => true, 164 'show_in_nav_menus' => false 163 'show_in_nav_menus' => false, 164 'menu_icon' => 'dashicons-images-alt2', 165 165 ); 166 166 … … 213 213 } 214 214 215 /**216 * Custom post type icon.217 *218 * @since 0.1219 */220 function responsive_slider_cpt_icon() {221 ?>222 <style type="text/css" media="screen">223 #menu-posts-slides .wp-menu-image {224 background: url(<?php echo RESPONSIVE_SLIDER_URI . 'images/slides-icon.png'; ?>) no-repeat 6px -17px !important;225 }226 #menu-posts-slides:hover .wp-menu-image {227 background-position: 6px 7px!important;228 }229 </style>230 <?php }231 215 232 216 /**
Note: See TracChangeset
for help on using the changeset viewer.