Plugin Directory

Changeset 609085


Ignore:
Timestamp:
10/07/2012 08:15:03 AM (13 years ago)
Author:
ti2m
Message:

Shortcode support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • edge-suite/trunk/edge-suite.php

    r608822 r609085  
    202202function edge_suite_header() {
    203203  global $edge_suite;
    204   print "\n" . implode("\n", $edge_suite->scripts) . "\n";
     204  if(isset($edge_suite->scripts) && is_array($edge_suite->scripts)){
     205    print "\n" . implode("\n", $edge_suite->scripts) . "\n";
     206  }
    205207}
    206208
     
    416418}
    417419add_shortcode('edge_animation', 'edge_suite_shortcode_edge_animation');
     420
     421// Enable widget shortcut support if configured
    418422if(get_option('edge_suite_widget_shortcode') == 1){
    419423  add_filter('widget_text', 'do_shortcode');
Note: See TracChangeset for help on using the changeset viewer.