diff --git a/wp-content/themes/score/lib/admin/inc/theme-options.php b/wp-content/themes/score/lib/admin/inc/theme-options.php index 915a502..66dded0 100644 --- a/wp-content/themes/score/lib/admin/inc/theme-options.php +++ b/wp-content/themes/score/lib/admin/inc/theme-options.php @@ -1356,13 +1356,6 @@ function gp_admin() {
@@ -1768,9 +1761,11 @@ if (is_admin() && $pagenow == "themes.php") { function set_theme_help_text() { global $_registered_pages, $dirname; - if (!empty($_registered_pages)) + /*if (!empty($_registered_pages)) foreach (array_keys($_registered_pages)as $hook) add_contextual_help($hook, '' . __('Help File', 'gp_lang') . '
' . __('Support Forum', 'gp_lang') . '
' . __('Changelog', 'gp_lang') . '
'); + * + */ } } diff --git a/wp-content/themes/score/lib/admin/inc/theme-post-types_bak.php b/wp-content/themes/score/lib/admin/inc/theme-post-types_bak.php deleted file mode 100644 index d855f0b..0000000 --- a/wp-content/themes/score/lib/admin/inc/theme-post-types_bak.php +++ /dev/null @@ -1,215 +0,0 @@ - array( - 'name' => __('Slides', 'gp_lang'), - 'singular_name' => __('Slide', 'gp_lang'), - 'all_items' => __('All Slides', 'gp_lang'), - 'add_new_item' => __('Add New Slide', 'gp_lang'), - 'edit_item' => __('Edit Slide', 'gp_lang'), - 'new_item' => __('New Slide', 'gp_lang'), - 'view_item' => __('View Slide', 'gp_lang'), - 'search_items' => __('Search Slides', 'gp_lang'), - 'menu_name' => __('Slides', 'gp_lang') - ), - 'public' => true, - 'exclude_from_search' => true, - 'show_ui' => true, - 'show_in_nav_menus' => false, - '_builtin' => false, - '_edit_link' => 'post.php?post=%d', - 'capability_type' => 'post', - 'hierarchical' => false, - 'rewrite' => array("slug" => "slide"), - 'menu_position' => 20, - 'with_front' => true, - 'supports' => array('title', 'thumbnail', 'author', 'custom-fields') - )); - - - /*************************** Slide Categories ***************************/ - - register_taxonomy('slide_categories', 'slide', array( - 'labels' => array( - 'name' => __('Slide Categories', 'gp_lang'), - 'singular_name' => __('Slide Category', 'gp_lang'), - 'all_items' => __('All Slide Categories', 'gp_lang'), - 'add_new_item' => __('Add New Slide Category', 'gp_lang'), - 'edit_item' => __('Edit Slide Category', 'gp_lang'), - 'new_item' => __('New Slide Category', 'gp_lang'), - 'view_item' => __('View Slide Category', 'gp_lang'), - 'search_items' => __('Search Slide Categories', 'gp_lang'), - 'menu_name' => __('Slide Categories', 'gp_lang') - ), - 'show_in_nav_menus' => false, - 'hierarchical' => true, - 'rewrite' => array('slug' => 'slide-categories') - )); - - - /*************************** Slide Page Layout ***************************/ - - add_filter("manage_edit-slide_columns", "slide_edit_columns"); - add_action("manage_posts_custom_column", "slide_custom_columns"); - - function slide_edit_columns($columns){ - $columns = array( - "cb" => "", - "title" => __('Title', 'gp_lang'), - "slide_url" => __('Slide URL', 'gp_lang'), - "slide_categories" => __('Categories', 'gp_lang'), - "slide_image" => __('Image', 'gp_lang'), - "date" => __('Date', 'gp_lang') - ); - - return $columns; - } - - function slide_custom_columns($column){ - global $post; - require(ghostpool_inc . 'options.php'); - switch ($column) - { - case "slide_url": - echo get_post_meta($post->ID, 'ghostpool_slide_url', true); - break; - case "slide_categories": - echo get_the_term_list($post->ID, 'slide_categories', '', ', ', ''); - break; - case "slide_image": - if(has_post_thumbnail()) { - $image = vt_resize(get_post_thumbnail_id(), '', 50, 50, true); - echo '; ?>/wp-admin/images/loading.gif)
slider categories and your chosen posts to one or more post categories. Now go to Appearance -> Theme Options -> Slider Settings and in the Slider Category IDs text field add your slider category IDs and/or post category IDs.', 'gp_lang'); ?>
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
- - -
-- - -
-- - -
-- - -
-- - -
- - - - 'footerposts', 'description' => __('Enhanced display for your footer posts.', 'gp_lang')); - $this->WP_Widget('footer-posts-widget', __('GP Footer Posts', 'gp_lang'), $widget_ops); - } - - function widget($args, $instance) { - global $gp_settings, $post, $wp_query, $paged; - extract($args); - $title = apply_filters('widget_title', $instance['title']); - $cats = $instance['cats']; - $number = $instance['number']; - $images = $instance['images']; - $image_width = $instance['image_width']; - $image_height = $instance['image_height']; - $post_cats = $instance['post_cats']; - $post_meta = $instance['post_meta']; - $score_type = $instance['score_type']; - $gd_sort = $instance['gd_sort']; - $gd_order = $instance['gd_order']; - - require(ghostpool_inc . 'options.php'); - - // Begin Widget - echo $before_widget; ?> - - - - '', 'cats' => '', 'number' => 5, 'images' => __('All Images', 'gp_lang'), 'image_width' => '50', 'image_height' => '0', 'post_cats' => __('Yes', 'gp_lang'), 'score_type' => __('Site Score', 'gp_lang'), 'post_meta' => __('Yes', 'gp_lang'), 'gd_sort' => 'review', 'gd_order' => 'desc'); - $instance = wp_parse_args((array) $instance, $defaults); ?> - -
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
- - -
-- - -
-- - -
-- - -
-- - -
- - - - \ No newline at end of file diff --git a/wp-content/themes/score/lib/admin/inc/tinymce/editor_plugin.js b/wp-content/themes/score/lib/admin/inc/tinymce/editor_plugin.js index f02bbe3..d501b9d 100644 --- a/wp-content/themes/score/lib/admin/inc/tinymce/editor_plugin.js +++ b/wp-content/themes/score/lib/admin/inc/tinymce/editor_plugin.js @@ -63,9 +63,9 @@ getInfo : function() { return { longname : 'ghostpool_shortcode', - author : 'ghostpool', - authorurl : 'http://ghostpool.com', - infourl : 'http://ghostpool.com', + author : 'asong2u.com', + authorurl : 'http://asong2u.com', + infourl : 'http://asong2u.com', version : "1.0" }; } diff --git a/wp-content/themes/score/style.css b/wp-content/themes/score/style.css index d7e7bb2..b2473a1 100644 --- a/wp-content/themes/score/style.css +++ b/wp-content/themes/score/style.css @@ -1,13 +1,13 @@ /* -Theme Name: Score -Version: 2.0 -Description: Designed by GhostPool.com. -Author: GhostPool -Author URI: http://www.ghostpool.com -Theme URI: http://www.ghostpool.com +Theme Name: ASong2U +Version: 1.0 +Description: +Author: +Author URI: +Theme URI: License: License URI: -Tags: buddypress, dark, black, blue, gray, one-column, two-columns, left-sidebar, right-sidebar, fixed-width, custom-background, custom-colors, custom-menu, editor-style, featured-images, full-width-template, sticky-post, theme-options, translation-ready, rtl-language-support +Tags: */ /*************************** General Styling ***************************/