calypsoify
6 years ago
carousel
6 years ago
comment-likes
7 years ago
comments
6 years ago
contact-form
6 years ago
custom-css
6 years ago
custom-post-types
6 years ago
geo-location
6 years ago
google-analytics
6 years ago
infinite-scroll
6 years ago
lazy-images
6 years ago
likes
6 years ago
markdown
6 years ago
masterbar
6 years ago
memberships
6 years ago
photon
6 years ago
photon-cdn
6 years ago
plugin-search
7 years ago
post-by-email
6 years ago
protect
6 years ago
publicize
6 years ago
pwa
6 years ago
related-posts
6 years ago
scan
6 years ago
search
6 years ago
seo-tools
6 years ago
sharedaddy
6 years ago
shortcodes
6 years ago
simple-payments
6 years ago
site-icon
6 years ago
sitemaps
6 years ago
sso
6 years ago
subscriptions
6 years ago
theme-tools
6 years ago
tiled-gallery
6 years ago
verification-tools
6 years ago
videopress
6 years ago
widget-visibility
6 years ago
widgets
6 years ago
woocommerce-analytics
6 years ago
wordads
6 years ago
wpcom-block-editor
6 years ago
wpcom-tos
6 years ago
.eslintrc.js
6 years ago
after-the-deadline.php
7 years ago
carousel.php
7 years ago
comment-likes.php
6 years ago
comments.php
6 years ago
contact-form.php
7 years ago
copy-post.php
6 years ago
custom-content-types.php
6 years ago
custom-css.php
7 years ago
enhanced-distribution.php
9 years ago
geo-location.php
7 years ago
google-analytics.php
8 years ago
gravatar-hovercards.php
6 years ago
infinite-scroll.php
6 years ago
json-api.php
9 years ago
latex.php
6 years ago
lazy-images.php
6 years ago
likes.php
6 years ago
markdown.php
9 years ago
masterbar.php
7 years ago
minileven.php
6 years ago
mobile-push.php
10 years ago
module-extras.php
6 years ago
module-headings.php
6 years ago
module-info.php
6 years ago
monitor.php
6 years ago
notes.php
6 years ago
photon-cdn.php
6 years ago
photon.php
6 years ago
plugin-search.php
6 years ago
post-by-email.php
6 years ago
protect.php
6 years ago
publicize.php
6 years ago
pwa.php
6 years ago
related-posts.php
7 years ago
search.php
6 years ago
seo-tools.php
7 years ago
sharedaddy.php
6 years ago
shortcodes.php
6 years ago
shortlinks.php
7 years ago
sitemaps.php
7 years ago
sso.php
6 years ago
stats.php
6 years ago
subscriptions.php
6 years ago
theme-tools.php
6 years ago
tiled-gallery.php
7 years ago
vaultpress.php
7 years ago
verification-tools.php
7 years ago
videopress.php
7 years ago
widget-visibility.php
7 years ago
widgets.php
7 years ago
woocommerce-analytics.php
6 years ago
wordads.php
7 years ago
wpgroho.js
6 years ago
custom-css.php
69 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Module Name: Custom CSS |
| 5 | * Module Description: Adds options for CSS preprocessor use, disabling the theme's CSS, or custom image width. |
| 6 | * Sort Order: 2 |
| 7 | * First Introduced: 1.7 |
| 8 | * Requires Connection: No |
| 9 | * Auto Activate: No |
| 10 | * Module Tags: Appearance |
| 11 | * Feature: Appearance |
| 12 | * Additional Search Queries: css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet |
| 13 | */ |
| 14 | |
| 15 | function jetpack_load_custom_css() { |
| 16 | // If WordPress has the core version of Custom CSS, load our new version. |
| 17 | // @see https://core.trac.wordpress.org/changeset/38829 |
| 18 | if ( function_exists( 'wp_get_custom_css' ) ) { |
| 19 | if ( ! function_exists( 'wp_update_custom_css_post' ) ) { |
| 20 | wp_die( 'Please run a SVN up to get the latest version of trunk, or update to at least 4.7 RC1' ); |
| 21 | } |
| 22 | if ( ! Jetpack_Options::get_option( 'custom_css_4.7_migration' ) ) { |
| 23 | include_once dirname( __FILE__ ) . '/custom-css/migrate-to-core.php'; |
| 24 | } |
| 25 | |
| 26 | // TODO: DELETE THIS |
| 27 | else { |
| 28 | if ( defined( 'WP_CLI' ) && WP_CLI ) { |
| 29 | function jetpack_custom_css_undo_data_migration_cli() { |
| 30 | Jetpack_Options::delete_option( 'custom_css_4.7_migration' ); |
| 31 | WP_CLI::success( __( 'Option deleted, re-migrate via `wp jetpack custom-css migrate`.', 'jetpack' ) ); |
| 32 | } |
| 33 | WP_CLI::add_command( 'jetpack custom-css undo-migrate', 'jetpack_custom_css_undo_data_migration_cli' ); |
| 34 | } |
| 35 | } |
| 36 | // TODO: END DELETE THIS |
| 37 | |
| 38 | include_once dirname( __FILE__ ) . '/custom-css/custom-css/preprocessors.php'; |
| 39 | include_once dirname( __FILE__ ) . '/custom-css/custom-css-4.7.php'; |
| 40 | return; |
| 41 | } |
| 42 | |
| 43 | include_once dirname( __FILE__ ) . "/custom-css/custom-css.php"; |
| 44 | add_action( 'init', array( 'Jetpack_Custom_CSS', 'init' ) ); |
| 45 | } |
| 46 | |
| 47 | add_action( 'jetpack_modules_loaded', 'custom_css_loaded' ); |
| 48 | |
| 49 | function custom_css_loaded() { |
| 50 | Jetpack::enable_module_configurable( __FILE__ ); |
| 51 | add_filter( 'jetpack_module_configuration_url_custom-css', 'jetpack_custom_css_configuration_url' ); |
| 52 | |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Overrides default configuration url |
| 57 | * |
| 58 | * @uses admin_url |
| 59 | * @return string module settings URL |
| 60 | */ |
| 61 | function jetpack_custom_css_configuration_url( $default_url ) { |
| 62 | return Jetpack_Custom_CSS_Enhancements::customizer_link( |
| 63 | array( 'return_url' => wp_get_referer() ) |
| 64 | ); |
| 65 | } |
| 66 | |
| 67 | |
| 68 | jetpack_load_custom_css(); |
| 69 |