├── README ├── Wordpress ├── filters │ ├── enable_shortcodes_for_.php │ ├── has_thumbnail_post_class.php │ ├── more_css_classes_for_menu_items.php │ ├── more_css_classes_for_widgets.php │ ├── remove_dashboard_widgets.php │ ├── remove_upgrade_notifications.php │ └── thumbs_preview_on_admin_posts_lists.php ├── functions │ ├── breadcrumb │ │ ├── bp.php │ │ ├── breadcrumb.php │ │ └── filters.php │ ├── get_page_parents.php │ ├── is_registered_sidebar.php │ ├── purge_transients.php │ ├── register_post_type_with_dates.php │ ├── unregister_taxonomy_for_object_type.php │ ├── wp_dropdown_post_types.php │ ├── wp_dropdown_taxonomies.php │ ├── wp_theme_version.php │ └── wp_version_compare.php ├── make-me-admin.php ├── plugins │ ├── debug-bar-in-bp.php │ ├── gg-authorship.php │ └── purge-transients │ │ └── purge-transients.php └── shortcodes │ ├── bloginfo.php │ ├── customfield.php │ ├── pdfdoc.php │ ├── snap.php │ └── youtube.php ├── js ├── LocationHash.js ├── class.js └── jQuery │ ├── enable-disable.js │ └── show-hide.js ├── misc └── table-unicode.php └── php ├── Inflector.php ├── apache_request_headers.php ├── array_filter_keys.php ├── encrypt-decrypt.php ├── google_pagerank.php ├── http_build_url.php ├── imagethumb.php ├── is_hash.php ├── serialized_str_replace.php ├── to_utf8.php └── whois_domain.php /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Wordpress/filters/enable_shortcodes_for_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/filters/enable_shortcodes_for_.php -------------------------------------------------------------------------------- /Wordpress/filters/has_thumbnail_post_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/filters/has_thumbnail_post_class.php -------------------------------------------------------------------------------- /Wordpress/filters/more_css_classes_for_menu_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/filters/more_css_classes_for_menu_items.php -------------------------------------------------------------------------------- /Wordpress/filters/more_css_classes_for_widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/filters/more_css_classes_for_widgets.php -------------------------------------------------------------------------------- /Wordpress/filters/remove_dashboard_widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/filters/remove_dashboard_widgets.php -------------------------------------------------------------------------------- /Wordpress/filters/remove_upgrade_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/filters/remove_upgrade_notifications.php -------------------------------------------------------------------------------- /Wordpress/filters/thumbs_preview_on_admin_posts_lists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/filters/thumbs_preview_on_admin_posts_lists.php -------------------------------------------------------------------------------- /Wordpress/functions/breadcrumb/bp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/breadcrumb/bp.php -------------------------------------------------------------------------------- /Wordpress/functions/breadcrumb/breadcrumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/breadcrumb/breadcrumb.php -------------------------------------------------------------------------------- /Wordpress/functions/breadcrumb/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/breadcrumb/filters.php -------------------------------------------------------------------------------- /Wordpress/functions/get_page_parents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/get_page_parents.php -------------------------------------------------------------------------------- /Wordpress/functions/is_registered_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/is_registered_sidebar.php -------------------------------------------------------------------------------- /Wordpress/functions/purge_transients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/purge_transients.php -------------------------------------------------------------------------------- /Wordpress/functions/register_post_type_with_dates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/register_post_type_with_dates.php -------------------------------------------------------------------------------- /Wordpress/functions/unregister_taxonomy_for_object_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/unregister_taxonomy_for_object_type.php -------------------------------------------------------------------------------- /Wordpress/functions/wp_dropdown_post_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/wp_dropdown_post_types.php -------------------------------------------------------------------------------- /Wordpress/functions/wp_dropdown_taxonomies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/wp_dropdown_taxonomies.php -------------------------------------------------------------------------------- /Wordpress/functions/wp_theme_version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/wp_theme_version.php -------------------------------------------------------------------------------- /Wordpress/functions/wp_version_compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/functions/wp_version_compare.php -------------------------------------------------------------------------------- /Wordpress/make-me-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/make-me-admin.php -------------------------------------------------------------------------------- /Wordpress/plugins/debug-bar-in-bp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/plugins/debug-bar-in-bp.php -------------------------------------------------------------------------------- /Wordpress/plugins/gg-authorship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/plugins/gg-authorship.php -------------------------------------------------------------------------------- /Wordpress/plugins/purge-transients/purge-transients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/plugins/purge-transients/purge-transients.php -------------------------------------------------------------------------------- /Wordpress/shortcodes/bloginfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/shortcodes/bloginfo.php -------------------------------------------------------------------------------- /Wordpress/shortcodes/customfield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/shortcodes/customfield.php -------------------------------------------------------------------------------- /Wordpress/shortcodes/pdfdoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/shortcodes/pdfdoc.php -------------------------------------------------------------------------------- /Wordpress/shortcodes/snap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/shortcodes/snap.php -------------------------------------------------------------------------------- /Wordpress/shortcodes/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/Wordpress/shortcodes/youtube.php -------------------------------------------------------------------------------- /js/LocationHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/js/LocationHash.js -------------------------------------------------------------------------------- /js/class.js: -------------------------------------------------------------------------------- 1 | Moved => http://gist.github.com/Seebz/9829123 -------------------------------------------------------------------------------- /js/jQuery/enable-disable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/js/jQuery/enable-disable.js -------------------------------------------------------------------------------- /js/jQuery/show-hide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/js/jQuery/show-hide.js -------------------------------------------------------------------------------- /misc/table-unicode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/misc/table-unicode.php -------------------------------------------------------------------------------- /php/Inflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/Inflector.php -------------------------------------------------------------------------------- /php/apache_request_headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/apache_request_headers.php -------------------------------------------------------------------------------- /php/array_filter_keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/array_filter_keys.php -------------------------------------------------------------------------------- /php/encrypt-decrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/encrypt-decrypt.php -------------------------------------------------------------------------------- /php/google_pagerank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/google_pagerank.php -------------------------------------------------------------------------------- /php/http_build_url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/http_build_url.php -------------------------------------------------------------------------------- /php/imagethumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/imagethumb.php -------------------------------------------------------------------------------- /php/is_hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/is_hash.php -------------------------------------------------------------------------------- /php/serialized_str_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/serialized_str_replace.php -------------------------------------------------------------------------------- /php/to_utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/to_utf8.php -------------------------------------------------------------------------------- /php/whois_domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seebz/Snippets/HEAD/php/whois_domain.php --------------------------------------------------------------------------------