Plugin Directory

Changeset 755444


Ignore:
Timestamp:
08/13/2013 03:29:57 AM (13 years ago)
Author:
webarthur
Message:

simple-content-slider v1.0.1

Location:
simple-content-slider
Files:
1 added
2 edited
5 copied

Legend:

Unmodified
Added
Removed
  • simple-content-slider/tags/1.0.1/index.php

    r754326 r755444  
    66Author: Arthur Araújo
    77Author URI: http://tutzstyle.com/
    8 Version: 1.0
     8Version: 1.0.1
    99*/
    1010
     
    177177    <div class="wrap">
    178178   
     179        <?php
     180            $external_plugin_name = 'Simple Content Slider';
     181            $external_plugin_url = 'http://tutzstyle.com/portfolio/simple-content-slider-and-slideshow-plugin-wordpress/';
     182        ?>
     183        <div style="float:right;width:400px">
     184            <div style="float:right; margin-top:10px">
     185                 <iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode($external_plugin_url) ?>&amp;layout=box_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21"
     186                    scrolling="no" frameborder="0" style="overflow:hidden; width:90px; height:61px; margin:0 0 0 10px; float:right" allowTransparency="true"></iframe>
     187                    <strong style="line-height:25px;">
     188                        <?php echo __("Do you like <a href=\"{$external_plugin_url}\" target=\"_blank\">{$external_plugin_name}</a> Plugin? "); ?>
     189                    </strong>
     190            </div>
     191        </div>
     192
    179193        <div id="icon-options-general" class="icon32"><br></div>
    180194        <h2><?php _e('Slideshow Options') ?></h2>
     
    278292    scontentslider_add_scripts();
    279293   
    280     # get slides
    281     $slides = $wpdb->get_results( $wpdb->prepare("
    282         SELECT post_content FROM $wpdb->posts WHERE post_type='%s' AND post_status='publish' ORDER BY ID ASC
    283     ", scontentslider_POSTYPE));
     294    if( is_string($echo) || is_array($echo) ) {
     295        $query = new WP_Query( $echo );
     296        if( $query->have_posts() )
     297            $slides = $query->posts;
     298    } else
     299        # get slides
     300        $slides = $wpdb->get_results( $wpdb->prepare("
     301            SELECT post_content FROM $wpdb->posts WHERE post_type='%s' AND post_status='publish' ORDER BY ID ASC
     302        ", scontentslider_POSTYPE));
     303   
     304    #print_r($slides);
    284305   
    285306    if( !$slides )
     
    297318    $code .= "</$htmltag>";
    298319   
    299     if( $echo==true )
     320    if( $echo!=false )
    300321        echo $code;
    301322   
  • simple-content-slider/tags/1.0.1/readme.txt

    r754326 r755444  
    33Donate link: http://tutzstyle.com/donate/
    44Author URI: http://tutzstyle.com/
    5 Plugin URI: http://tutzstyle.com/portfolio/simple-content-slider/
     5Plugin URI: http://tutzstyle.com/portfolio/simple-content-slider-slideshow/
    66Tags: slideshow, slider, slide, slidesjs, jquery slider, posttype, presentation, fade, content slider
    77Requires at least: 3.0
    88Tested up to: 3.6
    9 Stable tag: 1.0
     9Stable tag: 1.0.1
    1010License: GPLv2 or later
    1111A simple and responsive content slider and slideshow plug-in for jQuery with features like touch and CSS3 transitions.
     
    2626 - Shortcode makes it easy
    2727 - Function the_slideshow() can be used in hardcode
     28 - Exemple: the_slideshow("cat=10");
    2829
    2930= Showcase =
     
    5152== Changelog ==
    5253
     54= 1.0.1 =
     55* Function the_slideshow() now can do a query, exemple: the_slideshow("cat=12");
     56
    5357== Donate ==
    5458
  • simple-content-slider/trunk/index.php

    r754326 r755444  
    66Author: Arthur Araújo
    77Author URI: http://tutzstyle.com/
    8 Version: 1.0
     8Version: 1.0.1
    99*/
    1010
     
    177177    <div class="wrap">
    178178   
     179        <?php
     180            $external_plugin_name = 'Simple Content Slider';
     181            $external_plugin_url = 'http://tutzstyle.com/portfolio/simple-content-slider-and-slideshow-plugin-wordpress/';
     182        ?>
     183        <div style="float:right;width:400px">
     184            <div style="float:right; margin-top:10px">
     185                 <iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode($external_plugin_url) ?>&amp;layout=box_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21"
     186                    scrolling="no" frameborder="0" style="overflow:hidden; width:90px; height:61px; margin:0 0 0 10px; float:right" allowTransparency="true"></iframe>
     187                    <strong style="line-height:25px;">
     188                        <?php echo __("Do you like <a href=\"{$external_plugin_url}\" target=\"_blank\">{$external_plugin_name}</a> Plugin? "); ?>
     189                    </strong>
     190            </div>
     191        </div>
     192
    179193        <div id="icon-options-general" class="icon32"><br></div>
    180194        <h2><?php _e('Slideshow Options') ?></h2>
     
    278292    scontentslider_add_scripts();
    279293   
    280     # get slides
    281     $slides = $wpdb->get_results( $wpdb->prepare("
    282         SELECT post_content FROM $wpdb->posts WHERE post_type='%s' AND post_status='publish' ORDER BY ID ASC
    283     ", scontentslider_POSTYPE));
     294    if( is_string($echo) || is_array($echo) ) {
     295        $query = new WP_Query( $echo );
     296        if( $query->have_posts() )
     297            $slides = $query->posts;
     298    } else
     299        # get slides
     300        $slides = $wpdb->get_results( $wpdb->prepare("
     301            SELECT post_content FROM $wpdb->posts WHERE post_type='%s' AND post_status='publish' ORDER BY ID ASC
     302        ", scontentslider_POSTYPE));
     303   
     304    #print_r($slides);
    284305   
    285306    if( !$slides )
     
    297318    $code .= "</$htmltag>";
    298319   
    299     if( $echo==true )
     320    if( $echo!=false )
    300321        echo $code;
    301322   
  • simple-content-slider/trunk/readme.txt

    r754326 r755444  
    33Donate link: http://tutzstyle.com/donate/
    44Author URI: http://tutzstyle.com/
    5 Plugin URI: http://tutzstyle.com/portfolio/simple-content-slider/
     5Plugin URI: http://tutzstyle.com/portfolio/simple-content-slider-slideshow/
    66Tags: slideshow, slider, slide, slidesjs, jquery slider, posttype, presentation, fade, content slider
    77Requires at least: 3.0
    88Tested up to: 3.6
    9 Stable tag: 1.0
     9Stable tag: 1.0.1
    1010License: GPLv2 or later
    1111A simple and responsive content slider and slideshow plug-in for jQuery with features like touch and CSS3 transitions.
     
    2626 - Shortcode makes it easy
    2727 - Function the_slideshow() can be used in hardcode
     28 - Exemple: the_slideshow("cat=10");
    2829
    2930= Showcase =
     
    5152== Changelog ==
    5253
     54= 1.0.1 =
     55* Function the_slideshow() now can do a query, exemple: the_slideshow("cat=12");
     56
    5357== Donate ==
    5458
Note: See TracChangeset for help on using the changeset viewer.