File Editor
Directories:
.. (Back)
calypsoify
carousel
comment-likes
comments
contact-form
custom-css
custom-post-types
geo-location
google-analytics
infinite-scroll
lazy-images
likes
markdown
masterbar
memberships
photon
photon-cdn
plugin-search
post-by-email
protect
publicize
pwa
related-posts
scan
search
seo-tools
sharedaddy
shortcodes
simple-payments
site-icon
sitemaps
sso
subscriptions
theme-tools
tiled-gallery
verification-tools
videopress
widget-visibility
widgets
woocommerce-analytics
wordads
wpcom-block-editor
wpcom-tos
Files:
.eslintrc.js
after-the-deadline.php
carousel.php
comment-likes.php
comments.php
contact-form.php
copy-post.php
custom-content-types.php
custom-css.php
enhanced-distribution.php
geo-location.php
google-analytics.php
gravatar-hovercards.php
infinite-scroll.php
json-api.php
latex.php
lazy-images.php
likes.php
markdown.php
masterbar.php
minileven.php
mobile-push.php
module-extras.php
module-headings.php
module-info.php
monitor.php
notes.php
photon-cdn.php
photon.php
plugin-search.php
post-by-email.php
protect.php
publicize.php
pwa.php
related-posts.php
search.php
seo-tools.php
sharedaddy.php
shortcodes.php
shortlinks.php
sitemaps.php
sso.php
stats.php
subscriptions.php
theme-tools.php
tiled-gallery.php
vaultpress.php
verification-tools.php
videopress.php
widget-visibility.php
widgets.php
woocommerce-analytics.php
wordads.php
wpgroho.js
Create New File
Create
Edit File: minileven.php
<?php /** * Deprecated since 8.3.0 * * Originally we created the mobile theme feature as a fall-back * when the regular theme did not include a mobile view. * Most themes include a mobile view by default now, so the feature is no longer necessary. * * Visit this page for some alternatives: * https://jetpack.com/support/mobile-theme/ * * If you MUST continue to use this module, you can use this standalone plugin as a temporary solution: * https://github.com/Automattic/minileven * However, we do not recommend it. * * @deprecated * @package Jetpack */ /** * Deactivate module if it is still active. * * @since 8.3.0 */ if ( Jetpack::is_module_active( 'minileven' ) ) { Jetpack::deactivate_module( 'minileven' ); } // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped _deprecated_file( basename( __FILE__ ), 'jetpack-8.3.0' ); /** * Check if we are on mobile. */ function jetpack_check_mobile() { _deprecated_function( __FUNCTION__, 'jetpack-8.3.0', 'jetpack_is_mobile' ); return jetpack_is_mobile(); } /** * Should exclude from mobile? */ function jetpack_mobile_exclude() { _deprecated_function( __FUNCTION__, 'jetpack-8.3.0' ); } /** * Setup function for the Mobile theme. * Can be overwritten in child themes. */ function minileven_setup() { _deprecated_function( __FUNCTION__, 'jetpack-8.3.0' ); }
Save Changes
Rename File
Rename