first commit
1
wp-content/themes/worldwide-v1-01/include/class.php
Normal file
150
wp-content/themes/worldwide-v1-01/include/function-regist.php
Normal file
@ -0,0 +1,150 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Goodlayers Function Registered File
|
||||
* ---------------------------------------------------------------------
|
||||
* @version 1.0
|
||||
* @author Goodlayers
|
||||
* @link http://goodlayers.com
|
||||
* @copyright Copyright (c) Goodlayers
|
||||
* ---------------------------------------------------------------------
|
||||
* This file use to register the wordpress function to the framework,
|
||||
* and also use filter to hook some necessary events.
|
||||
* ---------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
// Include the shortcode support for the text widget
|
||||
add_filter('widget_text', 'do_shortcode');
|
||||
|
||||
// Add support to post and comment RSS feed links to head
|
||||
add_theme_support( 'automatic-feed-links' );
|
||||
|
||||
// Set the max content width
|
||||
if ( ! isset( $content_width ) ){ $content_width = 960; }
|
||||
|
||||
// enable featured image
|
||||
if(function_exists('add_theme_support')){
|
||||
add_theme_support('post-thumbnails');
|
||||
}
|
||||
|
||||
// enable navigation menu
|
||||
if(function_exists('add_theme_support')){
|
||||
add_theme_support('menus');
|
||||
register_nav_menus(array('main_menu' =>'Main Navigation Menu', 'top_menu' =>'Top Navigation Menu'));
|
||||
}
|
||||
|
||||
// Enable and register custom sidebar
|
||||
if (function_exists('register_sidebar')){
|
||||
|
||||
// default sidebar array
|
||||
$sidebar_attr = array(
|
||||
'name' => '',
|
||||
'before_widget' => '<div class="custom-sidebar %2$s" id="%1$s" >',
|
||||
'after_widget' => '</div>',
|
||||
'before_title' => '<h3 class="custom-sidebar-title">',
|
||||
'after_title' => '</h3>'
|
||||
);
|
||||
|
||||
$sidebar_id = 0;
|
||||
$gdl_sidebar = array("Footer 1", "Footer 2", "Footer 3", "Footer 4");
|
||||
|
||||
foreach( $gdl_sidebar as $sidebar_name ){
|
||||
$sidebar_attr['name'] = $sidebar_name;
|
||||
//$sidebar_attr['id'] = sanitize_title('gdl-' . $sidebar_name);
|
||||
$sidebar_attr['id'] = 'custom-sidebar' . $sidebar_id++ ;
|
||||
register_sidebar($sidebar_attr);
|
||||
}
|
||||
|
||||
$sidebar_attr['before_title'] = '<div class="custom-sidebar-title-wrapper"><h3 class="custom-sidebar-title gdl-border-x bottom">';
|
||||
$sidebar_attr['after_title'] = '</h3><i class="icon-double-angle-right"></i><div class="clear"></div></div>';
|
||||
|
||||
$gdl_sidebar = get_option( THEME_SHORT_NAME.'_create_sidebar' );
|
||||
|
||||
if(!empty($gdl_sidebar)){
|
||||
$xml = new DOMDocument();
|
||||
$xml->loadXML($gdl_sidebar);
|
||||
foreach( $xml->documentElement->childNodes as $sidebar_name ){
|
||||
$sidebar_attr['name'] = $sidebar_name->nodeValue;
|
||||
//$sidebar_attr['id'] = sanitize_title($sidebar_name->nodeValue);
|
||||
$sidebar_attr['id'] = 'custom-sidebar' . $sidebar_id++ ;
|
||||
register_sidebar($sidebar_attr);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Flush rewrite rules for custom post types.
|
||||
add_action( 'load-themes.php', 'gdl_flush_rewrite_rules' );
|
||||
function gdl_flush_rewrite_rules() {
|
||||
global $pagenow, $wp_rewrite;
|
||||
if ( 'themes.php' == $pagenow && isset( $_GET['activated'] ) ){
|
||||
$wp_rewrite->flush_rules();
|
||||
}
|
||||
}
|
||||
|
||||
// add filter to hook when user press "insert into post" to include the attachment id
|
||||
add_filter('media_send_to_editor', 'add_para_media_to_editor', 20, 2);
|
||||
function add_para_media_to_editor($html, $id){
|
||||
|
||||
if(strpos($html, 'href')){
|
||||
$pos = strpos($html, '<a') + 2;
|
||||
$html = substr($html, 0, $pos) . ' attid="' . $id . '" ' . substr($html, $pos);
|
||||
}
|
||||
|
||||
return $html ;
|
||||
|
||||
}
|
||||
|
||||
// enable theme to support the localization
|
||||
add_action('init', 'gdl_word_translation');
|
||||
function gdl_word_translation(){
|
||||
|
||||
global $gdl_admin_translator;
|
||||
|
||||
if( $gdl_admin_translator == 'disable' ){
|
||||
load_theme_textdomain( 'gdl_back_office', SERVER_PATH . '/include/languages/' );
|
||||
load_theme_textdomain( 'gdl_front_end', SERVER_PATH . '/include/languages/' );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// excerpt filter
|
||||
add_filter('excerpt_length','gdl_excerpt_length');
|
||||
function gdl_excerpt_length(){ return 1000; }
|
||||
|
||||
// feed excerpt filter
|
||||
add_filter('the_excerpt_rss', 'gdl_excerpt_rss');
|
||||
function gdl_excerpt_rss($excerpt) {
|
||||
return mb_substr($excerpt, 0, 300) . '...';
|
||||
}
|
||||
|
||||
// Translate the wpml shortcode -> [wpml_translate lang=en]LANG EN[/wpml_translate]
|
||||
add_shortcode('wpml_translate', 'webtreats_lang_test');
|
||||
function webtreats_lang_test( $atts, $content = null ) {
|
||||
extract(shortcode_atts(array( 'lang' => '' ), $atts));
|
||||
|
||||
$lang_active = ICL_LANGUAGE_CODE;
|
||||
if($lang == $lang_active){
|
||||
return $content;
|
||||
}
|
||||
}
|
||||
|
||||
// Custom Post type Feed
|
||||
add_filter('request', 'myfeed_request');
|
||||
function myfeed_request($qv) {
|
||||
if (isset($qv['feed']) && !isset($qv['post_type']))
|
||||
$qv['post_type'] = array('post', 'portfolio');
|
||||
return $qv;
|
||||
}
|
||||
|
||||
//Get custom post type shown in archive
|
||||
/* function include_custom_post_types( $query ) {
|
||||
global $wp_query;
|
||||
if ( is_category() || is_tag() || is_date() ) {
|
||||
$query->set( 'post_type' , 'portfolio' );
|
||||
}
|
||||
return $query;
|
||||
}
|
||||
add_filter( 'pre_get_posts' , 'include_custom_post_types' ); */
|
||||
|
||||
?>
|
299
wp-content/themes/worldwide-v1-01/include/gallery-option.php
Normal file
@ -0,0 +1,299 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Goodlayers Gallery Option File
|
||||
* ---------------------------------------------------------------------
|
||||
* @version 1.0
|
||||
* @author Goodlayers
|
||||
* @link http://goodlayers.com
|
||||
* @copyright Copyright (c) Goodlayers
|
||||
* ---------------------------------------------------------------------
|
||||
* This file create and contains the gallery post_type meta elements
|
||||
* ---------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
add_action( 'init', 'create_gallery' );
|
||||
function create_gallery() {
|
||||
|
||||
$labels = array(
|
||||
'name' => __('Gallery', 'gdl_back_office'),
|
||||
'singular_name' => __('Gallery Item', 'gdl_back_office'),
|
||||
'add_new' => __('Add New', 'gdl_back_office'),
|
||||
'add_new_item' => __('Add New Gallery', 'gdl_back_office'),
|
||||
'edit_item' => __('Edit Gallery', 'gdl_back_office'),
|
||||
'new_item' => __('New Gallery', 'gdl_back_office'),
|
||||
'view_item' => '',
|
||||
'search_items' => __('Search Gallery', 'gdl_back_office'),
|
||||
'not_found' => __('Nothing found', 'gdl_back_office'),
|
||||
'not_found_in_trash' => __('Nothing found in Trash', 'gdl_back_office'),
|
||||
'parent_item_colon' => ''
|
||||
);
|
||||
|
||||
$args = array(
|
||||
'labels' => $labels,
|
||||
'public' => true,
|
||||
'publicly_queryable' => true,
|
||||
'show_ui' => true,
|
||||
'query_var' => true,
|
||||
'rewrite' => true,
|
||||
'capability_type' => 'post',
|
||||
'hierarchical' => false,
|
||||
'menu_position' => 5,
|
||||
"show_in_nav_menus" => false,
|
||||
'exclude_from_search' => true,
|
||||
'supports' => array('title','thumbnail','custom-fields')
|
||||
);
|
||||
|
||||
register_post_type( 'gdl-gallery' , $args);
|
||||
|
||||
}
|
||||
|
||||
$gallery_meta_box = array(
|
||||
"Gallery Picker" => array(
|
||||
'type'=>'gallerypicker',
|
||||
'title'=> __('SELECT IMAGES', 'gdl_back_office'),
|
||||
'xml'=>'post-option-gallery-xml',
|
||||
'name'=>array(
|
||||
'image'=>'post-option-inside-thumbnail-slider-image',
|
||||
'title'=>'post-option-inside-thumbnail-slider-title',
|
||||
'link'=>'post-option-inside-thumbnail-slider-link',
|
||||
'linktype'=>'post-option-inside-thumbnail-slider-linktype'),
|
||||
'hr'=>'none'
|
||||
)
|
||||
);
|
||||
|
||||
add_action('add_meta_boxes', 'add_gallery_option');
|
||||
function add_gallery_option(){
|
||||
|
||||
add_meta_box('gallery-option', __('Gallery Option','gdl_back_office'), 'add_gallery_option_element',
|
||||
'gdl-gallery', 'normal', 'high');
|
||||
|
||||
}
|
||||
|
||||
function add_gallery_option_element(){
|
||||
|
||||
global $post, $gallery_meta_box;
|
||||
echo '<div id="gdl-overlay-wrapper">';
|
||||
|
||||
?> <div class="gallery-option-meta" id="gallery-option-meta"> <?php
|
||||
|
||||
set_nonce();
|
||||
|
||||
foreach($gallery_meta_box as $meta_box){
|
||||
|
||||
if( $meta_box['type'] == 'gallerypicker' ){
|
||||
|
||||
$xml_string = get_post_meta($post->ID, $meta_box['xml'], true);
|
||||
if( !empty($xml_string) ){
|
||||
|
||||
$xml_val = new DOMDocument();
|
||||
$xml_val->loadXML( $xml_string );
|
||||
$meta_box['value'] = $xml_val->documentElement;
|
||||
|
||||
}
|
||||
print_gallery_picker($meta_box);
|
||||
|
||||
}else{
|
||||
|
||||
$meta_box['value'] = get_post_meta($post->ID, $meta_box['name'], true);
|
||||
print_meta($meta_box);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
?> </div> <?php
|
||||
|
||||
echo '</div>';
|
||||
|
||||
}
|
||||
|
||||
function save_gallery_option_meta($post_id){
|
||||
|
||||
global $gallery_meta_box;
|
||||
$edit_meta_boxes = $gallery_meta_box;
|
||||
|
||||
// save
|
||||
foreach ($edit_meta_boxes as $edit_meta_box){
|
||||
|
||||
// save function for slider
|
||||
if( $edit_meta_box['type'] == 'gallerypicker' ){
|
||||
|
||||
if(isset($_POST[$edit_meta_box['name']['image']])){
|
||||
|
||||
$num = sizeof($_POST[$edit_meta_box['name']['image']]) - 1;
|
||||
|
||||
}else{
|
||||
|
||||
$num = -1;
|
||||
|
||||
}
|
||||
|
||||
$slider_xml_old = get_post_meta($post_id,$edit_meta_box['xml'],true);
|
||||
$slider_xml = "<slider-item>";
|
||||
|
||||
for($i=0; $i<=$num; $i++){
|
||||
|
||||
$slider_xml = $slider_xml. "<slider>";
|
||||
$image_new = stripslashes($_POST[$edit_meta_box['name']['image']][$i]);
|
||||
$slider_xml = $slider_xml. create_xml_tag('image',$image_new);
|
||||
$linktype_new = stripslashes($_POST[$edit_meta_box['name']['linktype']][$i]);
|
||||
$slider_xml = $slider_xml. create_xml_tag('linktype',$linktype_new);
|
||||
$link_new = stripslashes(htmlspecialchars($_POST[$edit_meta_box['name']['link']][$i]));
|
||||
$slider_xml = $slider_xml. create_xml_tag('link',$link_new);
|
||||
$slider_xml = $slider_xml . "</slider>";
|
||||
|
||||
}
|
||||
|
||||
$slider_xml = $slider_xml . "</slider-item>";
|
||||
save_meta_data($post_id, $slider_xml, $slider_xml_old, $edit_meta_box['xml']);
|
||||
|
||||
}else{
|
||||
|
||||
if(isset($_POST[$edit_meta_box['name']])){
|
||||
|
||||
$new_data = stripslashes($_POST[$edit_meta_box['name']]);
|
||||
|
||||
}else{
|
||||
|
||||
$new_data = '';
|
||||
|
||||
}
|
||||
|
||||
$old_data = get_post_meta($post_id, $edit_meta_box['name'],true);
|
||||
save_meta_data($post_id, $new_data, $old_data, $edit_meta_box['name']);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// gallerypicker => title, name=>array(num,image,title,caption,link)
|
||||
function print_gallery_picker($args){
|
||||
|
||||
extract($args);
|
||||
|
||||
?>
|
||||
|
||||
<div class="meta-body image-picker-wrapper">
|
||||
<div class="meta-input-slider">
|
||||
<div class="image-picker" id="image-picker">
|
||||
<input type='hidden' class="slider-num" id="slider-num" name='<?php
|
||||
|
||||
echo (isset($name['slider-num']))? $name['slider-num'] . '[]' : '' ;
|
||||
|
||||
?>' value=<?php
|
||||
|
||||
echo empty($value)? 0: $value->childNodes->length;
|
||||
|
||||
?> />
|
||||
<div class="selected-image" id="selected-image">
|
||||
<div id="selected-image-none"></div>
|
||||
<ul>
|
||||
<li id="default" class="default">
|
||||
<div class="selected-image-wrapper">
|
||||
<img src=""/>
|
||||
<div class="selected-image-element">
|
||||
<div id="edit-image" class="edit-image"></div>
|
||||
<div id="unpick-image" class="unpick-image"></div>
|
||||
<br class="clear">
|
||||
</div>
|
||||
</div>
|
||||
<input type="hidden" class='slider-image-url' id='<?php echo $name['image']; ?>' />
|
||||
<div id="slider-detail-wrapper" class="slider-detail-wrapper">
|
||||
<div id="slider-detail" class="slider-detail">
|
||||
<div class="meta-title meta-detail-title"><?php _e('LINK TYPE', 'gdl_back_office'); ?></div>
|
||||
<div class="meta-input meta-detail-input">
|
||||
<div class="combobox">
|
||||
<select id='<?php echo $name['linktype']; ?>'>
|
||||
<option>No Link</option>
|
||||
<option selected>Lightbox</option>
|
||||
<option>Link to URL</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="meta-title meta-detail-title ml0 mt5" rel="url"><?php _e('URL PATH', 'gdl_back_office'); ?></div>
|
||||
<div><input class="mt10" type="text" id='<?php echo $name['link']; ?>' /></div>
|
||||
</div>
|
||||
<br class="clear">
|
||||
<div class="meta-detail-done-wrapper">
|
||||
<input type="button" id="gdl-detail-edit-done" class="gdl-button" value="Done" /><br class="clear">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<?php
|
||||
|
||||
if(!empty($value)){
|
||||
|
||||
foreach ($value->childNodes as $slider){ ?>
|
||||
|
||||
<li class="slider-image-init">
|
||||
<div class="selected-image-wrapper">
|
||||
<img src="<?php
|
||||
|
||||
$thumb_src_preview = wp_get_attachment_image_src( find_xml_value($slider, 'image'), 'thumbnail');
|
||||
echo $thumb_src_preview[0];
|
||||
|
||||
?>"/>
|
||||
<div class="selected-image-element">
|
||||
<div id="edit-image" class="edit-image"></div>
|
||||
<div id="unpick-image" class="unpick-image"></div>
|
||||
<br class="clear">
|
||||
</div>
|
||||
</div>
|
||||
<input type="hidden" class='slider-image-url' name='<?php echo $name['image']; ?>[]' id='<?php echo $name['image']; ?>[]' value="<?php echo find_xml_value($slider, 'image'); ?>" />
|
||||
<div id="slider-detail-wrapper" class="slider-detail-wrapper">
|
||||
<div id="slider-detail" class="slider-detail">
|
||||
<div class="meta-title meta-detail-title"><?php _e('LINK TYPE', 'gdl_back_office'); ?></div>
|
||||
<div class="meta-input meta-detail-input">
|
||||
<div class="combobox">
|
||||
<?php $linktype_val = find_xml_value($slider, 'linktype'); ?>
|
||||
<select name='<?php echo $name['linktype']; ?>[]' id='<?php echo $name['linktype']; ?>' >
|
||||
<option <?php echo ($linktype_val == 'No Link')? "selected" : ''; ?> >No Link</option>
|
||||
<option <?php echo ($linktype_val == 'Lightbox')? "selected" : ''; ?>>Lightbox</option>
|
||||
<option <?php echo ($linktype_val == 'Link to URL')? "selected" : ''; ?>>Link to URL</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="meta-title meta-detail-title ml0 mt5" rel="url"><?php _e('URL PATH', 'gdl_back_office'); ?></div>
|
||||
<div><input class="mt10" type="text" name='<?php echo $name['link']; ?>[]' id='<?php echo $name['link']; ?>[]' value="<?php echo find_xml_value($slider, 'link'); ?>" /></div>
|
||||
</div>
|
||||
<br class="clear">
|
||||
<div class="meta-detail-done-wrapper">
|
||||
<input type="button" id="gdl-detail-edit-done" class="gdl-button" value="Done" /><br class="clear">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<?php
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
</ul>
|
||||
<br class=clear>
|
||||
<div id="show-media" class="show-media">
|
||||
<span id="show-media-text"></span>
|
||||
<div id="show-media-image"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="media-image-gallery-wrapper">
|
||||
<div class="media-image-gallery" id="media-image-gallery">
|
||||
<?php get_media_image(); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br class=clear>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
||||
}
|
||||
?>
|
1877
wp-content/themes/worldwide-v1-01/include/goodlayers-option.php
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/add-item.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/add-more.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.8 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/check-list.png
Normal file
After Width: | Height: | Size: 643 B |
BIN
wp-content/themes/worldwide-v1-01/include/images/check-list2.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 4.8 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/circle.gif
Normal file
After Width: | Height: | Size: 78 B |
BIN
wp-content/themes/worldwide-v1-01/include/images/close-red.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/close.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/delete-item.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 2.7 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/edit-item.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/edit-item2.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 2.8 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/gdl-meta-bg.png
Normal file
After Width: | Height: | Size: 81 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/gdl-nav-bg.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/gradient.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/info.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 260 B |
After Width: | Height: | Size: 251 B |
After Width: | Height: | Size: 178 B |
After Width: | Height: | Size: 104 B |
After Width: | Height: | Size: 125 B |
After Width: | Height: | Size: 105 B |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 90 B |
After Width: | Height: | Size: 129 B |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 3.8 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/line.gif
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/loading.gif
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/loading2.gif
Normal file
After Width: | Height: | Size: 723 B |
BIN
wp-content/themes/worldwide-v1-01/include/images/nav-first.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/nav-last.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 4.1 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/no-sidebar.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 3.4 KiB |
BIN
wp-content/themes/worldwide-v1-01/include/images/rainbow.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 991 B |