Skip to main content

Posts

Showing posts from May, 2014

Get Google Calendar Event List in WordPress

<a href="https://console.cloud.google.com/apis/credentials">Get Your Api Credentials Here</a> <a href="https://calendar.google.com/calendar">Get your Calender ID</a> <?php include_once("wp-load.php"); function  get_calender_events() { $params = array(); /*Get current date*/ $current_date  = date('Y-m-d H:i:s'); /*Convert it to google calendar's rfc_format */ $rfc_format = date("c", strtotime($current_date)); $params[] = 'orderBy=startTime'; $params[] ='maxResults=100'; $params[] = 'timeMin='.urlencode($rfc_format); $url_param = ''; foreach($params as $param) { $url_param.= '&'.$param; } $calender_id = "calender_id"; $client_key =  "client_key"; $url = "https://www.googleapis.com/calendar/v3/calendars/".$calender_id."/events?key=".$client_key."&singleEvents=true".$url_param; $list_events = wp_remote_post($url,

Create custom Post type In Wordpress

add in function.php add_action('init', 'samrat_testimonial'); function samrat_testimonial() {     $labels = array(         'name' => __('Testimonials', 'samrat-toolkit'),         'singular_name' => __('Testimonial', 'samrat-toolkit'),         'add_new' => __('Add New', 'samrat-toolkit'),         'add_new_item' => __('Add New Item', 'samrat-toolkit'),         'edit_item' => __('Edit Item', 'samrat-toolkit'),         'new_item' => __('New Item', 'samrat-toolkit'),         'all_items' => __('All Items', 'samrat-toolkit'),         'view_item' => __('View Item', 'samrat-toolkit'),         'search_items' => __('Search Items', 'samrat-toolkit'),         'not_found' => __('No items found', 'samrat-too

YouTube Video slider

<script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://bxslider.com/lib/jquery.bxslider.min.js"></script> <script> $(document).ready(function(){   $('.slider1').bxSlider({ slideWidth: 200, minSlides: 1, maxSlides: 3, slideMargin: 10, auto: false, pager: true, pagerSelector: '#bx-pager', //pagerCustom: '#bx-pager-custom', infiniteLoop: true, easing: 'easeOutElastic', speed: 2000, nextSelector: '#slider-nextw', prevSelector: '#slider-prevw', nextText: 'Onward →', prevText: '← Go back'   }); }); $(document).ready(function(){ $(".video-1").on("click", function(event) { //var callss=this.id; //alert(callss);   event.preventDefault();   $(".video_case iframe").prop("src", $(event.currentTarget).attr("href")); });}); </script> <style> .playbutton