calypsoify
4 years ago
carousel
4 years ago
cloudflare-analytics
4 years ago
comment-likes
5 years ago
comments
4 years ago
contact-form
3 years ago
custom-css
4 years ago
custom-post-types
4 years ago
geo-location
4 years ago
google-analytics
4 years ago
gravatar
5 years ago
infinite-scroll
4 years ago
likes
4 years ago
markdown
4 years ago
masterbar
3 years ago
memberships
3 years ago
photon
5 years ago
photon-cdn
3 years ago
plugin-search
4 years ago
post-by-email
4 years ago
protect
4 years ago
publicize
3 years ago
related-posts
3 years ago
scan
4 years ago
seo-tools
3 years ago
sharedaddy
3 years ago
shortcodes
4 years ago
simple-payments
3 years ago
site-icon
4 years ago
sitemaps
3 years ago
sso
4 years ago
stats
4 years ago
subscriptions
4 years ago
theme-tools
4 years ago
tiled-gallery
3 years ago
verification-tools
4 years ago
videopress
3 years ago
widget-visibility
3 years ago
widgets
3 years ago
woocommerce-analytics
4 years ago
wordads
4 years ago
wpcom-block-editor
4 years ago
wpcom-tos
5 years ago
carousel.php
4 years ago
comment-likes.php
4 years ago
comments.php
4 years ago
contact-form.php
3 years ago
copy-post.php
4 years ago
custom-content-types.php
4 years ago
custom-css.php
4 years ago
enhanced-distribution.php
4 years ago
geo-location.php
4 years ago
google-analytics.php
4 years ago
google-fonts.php
4 years ago
gravatar-hovercards.php
4 years ago
infinite-scroll.php
4 years ago
json-api.php
5 years ago
latex.php
4 years ago
lazy-images.php
4 years ago
likes.php
4 years ago
markdown.php
4 years ago
masterbar.php
4 years ago
module-extras.php
4 years ago
module-headings.php
4 years ago
module-info.php
3 years ago
monitor.php
4 years ago
notes.php
4 years ago
photon-cdn.php
4 years ago
photon.php
4 years ago
plugin-search.php
5 years ago
post-by-email.php
5 years ago
protect.php
4 years ago
publicize.php
3 years ago
related-posts.php
4 years ago
search.php
4 years ago
seo-tools.php
4 years ago
sharedaddy.php
4 years ago
shortcodes.php
4 years ago
shortlinks.php
4 years ago
sitemaps.php
4 years ago
sso.php
4 years ago
stats.php
4 years ago
subscriptions.php
4 years ago
theme-tools.php
4 years ago
tiled-gallery.php
4 years ago
vaultpress.php
4 years ago
verification-tools.php
5 years ago
videopress.php
4 years ago
waf.php
4 years ago
widget-visibility.php
4 years ago
widgets.php
4 years ago
woocommerce-analytics.php
5 years ago
wordads.php
5 years ago
wpgroho.js
5 years ago
custom-css.php
75 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 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 | /** |
| 16 | * Load custom CSS |
| 17 | */ |
| 18 | function jetpack_load_custom_css() { |
| 19 | // If WordPress has the core version of Custom CSS, load our new version. |
| 20 | // @see https://core.trac.wordpress.org/changeset/38829 |
| 21 | if ( function_exists( 'wp_get_custom_css' ) ) { |
| 22 | if ( ! function_exists( 'wp_update_custom_css_post' ) ) { |
| 23 | wp_die( 'Please run a SVN up to get the latest version of trunk, or update to at least 4.7 RC1' ); |
| 24 | } |
| 25 | if ( ! Jetpack_Options::get_option( 'custom_css_4.7_migration' ) ) { |
| 26 | include_once __DIR__ . '/custom-css/migrate-to-core.php'; |
| 27 | } else { // TODO: DELETE THIS. |
| 28 | if ( defined( 'WP_CLI' ) && WP_CLI ) { |
| 29 | WP_CLI::add_command( |
| 30 | 'jetpack custom-css undo-migrate', |
| 31 | function () { |
| 32 | Jetpack_Options::delete_option( 'custom_css_4.7_migration' ); |
| 33 | WP_CLI::success( __( 'Option deleted, re-migrate via `wp jetpack custom-css migrate`.', 'jetpack' ) ); |
| 34 | } |
| 35 | ); |
| 36 | } |
| 37 | } |
| 38 | // TODO: END DELETE THIS. |
| 39 | |
| 40 | include_once __DIR__ . '/custom-css/custom-css/preprocessors.php'; |
| 41 | include_once __DIR__ . '/custom-css/custom-css-4.7.php'; |
| 42 | return; |
| 43 | } |
| 44 | |
| 45 | include_once __DIR__ . '/custom-css/custom-css.php'; |
| 46 | add_action( 'init', array( 'Jetpack_Custom_CSS', 'init' ) ); |
| 47 | } |
| 48 | |
| 49 | add_action( 'jetpack_modules_loaded', 'custom_css_loaded' ); |
| 50 | |
| 51 | /** |
| 52 | * Enable CSS module. |
| 53 | */ |
| 54 | function custom_css_loaded() { |
| 55 | Jetpack::enable_module_configurable( __FILE__ ); |
| 56 | add_filter( 'jetpack_module_configuration_url_custom-css', 'jetpack_custom_css_configuration_url' ); |
| 57 | |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Overrides default configuration url |
| 62 | * |
| 63 | * @uses admin_url |
| 64 | * |
| 65 | * @param string $default_url - the default URL. |
| 66 | * @return string module settings URL |
| 67 | */ |
| 68 | function jetpack_custom_css_configuration_url( $default_url ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
| 69 | return Jetpack_Custom_CSS_Enhancements::customizer_link( |
| 70 | array( 'return_url' => wp_get_referer() ) |
| 71 | ); |
| 72 | } |
| 73 | |
| 74 | jetpack_load_custom_css(); |
| 75 |