__( 'Main Navigation', 'Destro' ) ) ); // This theme uses post thumbnails add_theme_support( 'post-thumbnails' ); add_image_size( 'Destrothumb', 450, 300, true ); // Add default posts and comments RSS feed links to head add_theme_support( 'automatic-feed-links' ); } add_action( 'after_setup_theme', 'Destro_setup' ); /* * Loads the Options Panel */ if ( !function_exists( 'optionsframework_init' ) ) { /* Set the file path based on whether we're in a child theme or parent theme */ define('OPTIONS_FRAMEWORK_URL', get_template_directory() . '/admin/'); define('OPTIONS_FRAMEWORK_DIRECTORY', get_template_directory_uri() . '/admin/'); require_once (OPTIONS_FRAMEWORK_URL . 'options-framework.php'); } /* * This is an example of how to add custom scripts to the options panel. * This example shows/hides an option when a checkbox is clicked. */ add_action('optionsframework_custom_scripts', 'optionsframework_custom_scripts'); function optionsframework_custom_scripts() { ?> get_queried_object(); if ( isset( $page_obj->ID ) && $page_obj->ID >= 0 ) return $page_obj->ID; return -1; } /** * Get custom field of the current page * $type = string|int */ function Destro_get_custom_field($filedname, $id = NULL, $single=true) { global $post; if($id==NULL) $id = get_the_ID(); if($id==NULL) $id = Destro_get_page_id(); $value = get_post_meta($id, $filedname, $single); if($single) return stripslashes($value); else return $value; } /** * Get Limited String * $output = string * $max_char = int */ function Destro_get_limited_string($output, $max_char=100, $end='...') { $output = str_replace(']]>', ']]>', $output); $output = strip_tags($output); $output = strip_shortcodes($output); if ((strlen($output)>$max_char) && ($espacio = strpos($output, " ", $max_char ))) { $output = substr($output, 0, $espacio).$end; return $output; } else { return $output; } } /** * Tests if any of a post's assigned categories are descendants of target categories * * @param mixed $cats The target categories. Integer ID or array of integer IDs * @param mixed $_post The post * @return bool True if at least 1 of the post's categories is a descendant of any of the target categories * @see get_term_by() You can get a category by name or slug, then pass ID to this function * @uses get_term_children() Gets descendants of target category * @uses in_category() Tests against descendant categories * @version 2.7 */ function Destro_post_is_in_descendant_category( $cats, $_post = null ) { foreach ( (array) $cats as $cat ) { // get_term_children() accepts integer ID only $descendants = get_term_children( (int) $cat, 'category'); if ( $descendants && in_category( $descendants, $_post ) ) return true; } return false; } /** * Twitter's Blogger.js output for Twitter widgets * $unique_id = string * $username = string * limit = int */ function Destro_twitter_script($unique_id,$username,$limit) { ?>
  • id="li-comment-">
    comment_approved == '0') : ?>

    $depth, 'max_depth' => $args['max_depth']))) ?>
    '; wp_enqueue_style('Destro_wilto', get_stylesheet_directory_uri().'/css/wilto.css'); if( of_get_option('skin_style') == 'destro' ) { wp_enqueue_style('Destro_destrostyle', get_template_directory_uri().'/destro.css'); wp_enqueue_style('Destro_destroResponsive', get_template_directory_uri().'/destroresponsive.css'); }elseif( of_get_option('skin_style') == 'azurite' ) { wp_enqueue_style('Destro_Azuritestyle', get_template_directory_uri().'/azurite.css'); wp_enqueue_style('Destro_AzuriteResponsive', get_template_directory_uri().'/azuriteresponsive.css'); }elseif( of_get_option('skin_style') == 'blaze' ) { wp_enqueue_style('Destro_Blazestyle', get_template_directory_uri().'/blaze.css'); wp_enqueue_style('Destro_BlazeResponsive', get_template_directory_uri().'/blazeresponsive.css'); }elseif( of_get_option('skin_style') == 'mead' ) { wp_enqueue_style('Destro_meadstyle', get_template_directory_uri().'/mead.css'); wp_enqueue_style('Destro_meadResponsive', get_template_directory_uri().'/meadresponsive.css'); }elseif( of_get_option('skin_style') == 'kawfee' ) { wp_enqueue_style('Destro_kawfeestyle', get_template_directory_uri().'/kawfee.css'); wp_enqueue_style('Destro_kawfeeResponsive', get_template_directory_uri().'/kawfeeresponsive.css'); }elseif( of_get_option('skin_style') == 'liten' ) { wp_enqueue_style('Destro_litenstyle', get_template_directory_uri().'/liten.css'); wp_enqueue_style('Destro_litenResponsive', get_template_directory_uri().'/litenresponsive.css'); }elseif( of_get_option('skin_style') == 'pink' ) { wp_enqueue_style('Destro_pinkstyle', get_template_directory_uri().'/pink.css'); wp_enqueue_style('Destro_pinkResponsive', get_template_directory_uri().'/pinkresponsive.css'); }elseif( of_get_option('skin_style') == 'alken' ) { wp_enqueue_style('Destro_alkenstyle', get_template_directory_uri().'/alken.css'); wp_enqueue_style('Destro_alkenResponsive', get_template_directory_uri().'/alkenresponsive.css'); }elseif( of_get_option('skin_style') == 'oren' ) { wp_enqueue_style('Destro_orenstyle', get_template_directory_uri().'/oren.css'); wp_enqueue_style('Destro_orenResponsive', get_template_directory_uri().'/orenresponsive.css'); }elseif( of_get_option('skin_style') == 'browne' ) { wp_enqueue_style('Destro_brownestyle', get_template_directory_uri().'/browne.css'); wp_enqueue_style('Destro_browneResponsive', get_template_directory_uri().'/browneresponsive.css'); }elseif( of_get_option('skin_style') == 'lity' ) { wp_enqueue_style('Destro_litystyle', get_template_directory_uri().'/lity.css'); wp_enqueue_style('Destro_lityResponsive', get_template_directory_uri().'/lityresponsive.css'); }else { wp_enqueue_style('Destro_Defaultstyle', get_stylesheet_directory_uri().'/lite.css'); wp_enqueue_style('Destro_Defaultresponsive', get_stylesheet_directory_uri().'/responsive.css'); } } } /** * Add JS scripts */ function Destro_add_javascript( ) { if (is_singular() && get_option('thread_comments')) wp_enqueue_script('comment-reply'); wp_enqueue_script('jquery'); if( !is_admin() ) { wp_enqueue_script('Destro_jquery', get_template_directory_uri().'/js/respond.min.js' ); wp_enqueue_script('Destro_jquery', get_template_directory_uri().'/js/jquery-1.7.2.min.js' ); wp_enqueue_script('Destro_tabcontent', get_template_directory_uri().'/js/tabcontent.js' ); wp_enqueue_script('Destro_respmenu', get_template_directory_uri().'/js/tinynav.min.js' ); wp_enqueue_script('Destro_wilto', get_template_directory_uri().'/js/wilto.js'); wp_enqueue_script('Destro_wiltoint', get_template_directory_uri().'/js/wilto.int.js'); } } /** * Get YouTube Id from Url */ function Destro_quickYouTubeId($youtubeurl) { preg_match("#[a-zA-Z0-9-_]{11}#", $youtubeurl, $id); return (strlen($id[0])==11) ? $id[0] : false; } function Destro_backupmenu() { if ( current_user_can('edit_theme_options') ) { echo ' '; } else { echo ' '; } } /** * Register widgetized areas */ function Destro_the_widgets_init() { if ( !function_exists('register_sidebars') ) return; $before_widget = ''; $before_title = '

    '; $after_title = '

    '; register_sidebar(array('name' => __('Default','Destro'),'id' => 'default','before_widget' => $before_widget,'after_widget' => $after_widget,'before_title' => $before_title,'after_title' => $after_title)); register_sidebar(array('name' => __('300x250 Ads','Destro'),'id' => 'sidebar-ads','before_widget' => $before_widget,'after_widget' => $after_widget,'before_title' => $before_title,'after_title' => $after_title)); register_sidebar(array('name' => __('125x125 Ads','Destro'),'id' => 'sidebar-ads-onetwofive','before_widget' => $before_widget,'after_widget' => $after_widget,'before_title' => $before_title,'after_title' => $after_title)); } /** * Filter for get_the_excerpt */ function Destro_get_the_excerpt($content){ return str_replace(' [...]','',$content); } /** * Get the sidebar ID */ function Destro_get_sidebar_id(){ global $post; $sidebar_id = 'sidebar-default'; if(isset($post->ID)) if(is_active_sidebar('sidebar-'.$post->ID)) $sidebar_id = 'sidebar-'.$post->ID; return $sidebar_id; } /* Wp Title */ function Destro_doc_title( $doc_title ) { if( is_category() ) { $doc_title = __( 'Category: ', 'Destro' ) . $doc_title . ' - '; } elseif( is_tag() ) { $doc_title = single_tag_title( __( 'Tag Archive for "', 'Destro'), false ) . '" - '; } elseif( is_archive() ) { $doc_title .= __( ' Archive - ', 'Destro' ); } elseif( is_page() ) { $doc_title .= ' - '; } elseif( is_search() ) { $doc_title = __('Search for "','Destro') . get_search_query() . '" - '; } elseif( ! is_404() && is_single() || is_page() ) { $doc_title .= ' - '; } elseif( is_404() ) { $doc_title = __( 'Not Found - ', 'Destro' ); } $doc_title .= get_bloginfo('name'); return $doc_title; } add_filter( 'wp_title', 'Destro_doc_title' ); add_filter( 'the_content_more_link', 'Destro_more_link', 10, 2 ); function Destro_more_link( $more_link, $more_link_text ) { return '

    '.$more_link; } add_filter('the_title','Destro_has_title'); function Destro_has_title($title){ global $post; if($title == ''){ return get_the_time(get_option( 'date_format' )); }else{ return $title; } } if (!is_admin()){ add_action( 'wp_print_styles', 'Destro_add_stylesheets' ); add_action( 'wp_enqueue_scripts', 'Destro_add_javascript' ); } add_filter('body_class','Destro_browser_body_class'); add_filter('the_excerpt', 'Destro_get_the_excerpt'); add_filter('get_the_excerpt', 'Destro_get_the_excerpt'); add_action( 'widgets_init', 'Destro_the_widgets_init' ); // Allow Shortcodes in Sidebar Widgets add_filter('widget_text', 'do_shortcode'); /** * Add default options and show Options Panel after activate */ if (is_admin() && isset($_GET['activated'] ) && $pagenow == "themes.php" ) { //Do redirect wp_redirect( admin_url( 'admin.php?page=options-framework' ) ); exit; } add_action( 'widgets_init', 'Destro_ads_sidebar' ); /** * Register our widget. * 'Example_Widget' is the widget class used below. * * @since 0.1 */ function Destro_ads_sidebar() { register_widget( 'Destro_sidebarads' ); } /** * Example Widget class. * This class handles everything that needs to be handled with the widget: * the settings, form, display, and update. Nice! * * @since 0.1 */ class Destro_sidebarads extends WP_Widget { /** * Widget setup. */ function Destro_sidebarads() { /* Widget settings. */ $widget_ops = array( 'classname' => 'example', 'description' => __('An example widget that displays ads in sidebar.', 'Destro') ); /* Widget control settings. */ $control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => '300x250' ); /* Create the widget. */ $this->WP_Widget( '300x250', __('300x250 Ads', 'Destro'), $widget_ops, $control_ops ); } /** * How to display the widget on the screen. */ function widget( $args, $instance ) { extract( $args ); /* Our variables from the widget settings. */ $image = $instance['image']; $url= $instance['url']; if ( $url ) printf( '', $image ); } /** * Update the widget settings. */ function update( $new_instance, $old_instance ) { $instance = $old_instance; /* No need to strip tags for sex and show_sex. */ $instance['image'] = $new_instance['image']; $instance['url'] = $new_instance['url']; return $instance; } /** * Displays the widget settings controls on the widget panel. * Make use of the get_field_id() and get_field_name() function * when creating your form elements. This handles the confusing stuff. */ function form( $instance ) { /* Set up some default widget settings. */ $defaults = array( 'image' => __('', 'Destro'), 'url' => __('', 'Destro') ); $instance = wp_parse_args( (array) $instance, $defaults ); ?>

    'example', 'description' => __('An example widget that displays ads in sidebar.', 'Destro') ); /* Widget control settings. */ $control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => '125x125' ); /* Create the widget. */ $this->WP_Widget( '125x125', __('125x125 Ads', 'Destro'), $widget_ops, $control_ops ); } /** * How to display the widget on the screen. */ function widget( $args, $instance ) { extract( $args ); /* Our variables from the widget settings. */ $image = $instance['image']; $url= $instance['url']; if ( $url ) printf( '', $image ); } /** * Update the widget settings. */ function update( $new_instance, $old_instance ) { $instance = $old_instance; /* No need to strip tags for sex and show_sex. */ $instance['image'] = $new_instance['image']; $instance['url'] = $new_instance['url']; return $instance; } /** * Displays the widget settings controls on the widget panel. * Make use of the get_field_id() and get_field_name() function * when creating your form elements. This handles the confusing stuff. */ function form( $instance ) { /* Set up some default widget settings. */ $defaults = array( 'image' => __('', 'Destro'), 'url' => __('', 'Destro') ); $instance = wp_parse_args( (array) $instance, $defaults ); ?>