This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body::after { | |
content: ""; | |
display: block; | |
position: fixed; | |
top: 0; | |
left: 0; | |
height: 100%; | |
height: 100vh; | |
width: 100%; | |
width: 100vw; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function custom_add_interface_to_wp_block( $args, $post_type ) { | |
global $pagenow; | |
if ( 'wp_block' !== $post_type ) { | |
return $args; | |
} | |
$changed_args = array( | |
'show_ui' => true, | |
'show_in_menu' => true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// has been taken from a class, globals are just a quick and dirty workarround | |
// This Wrapper is one example for a simple use of cached filemtime version strings, in this case for the parent theme. | |
// Needs small changes to work for childtheme, javascript, plugins or register | |
function local_enqueue_style( $handle, $src, $deps = array(), $media = 'all' ) { | |
wp_enqueue_style( $handle, get_template_directory_uri() . $src, $deps, local_get_version( get_template_directory() . $src ), $media ); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! class_exists( 'MultsiteComposer' ) ) { | |
class MultsiteComposer { | |
public static function init() { | |
if ( isset( $_GET['vc_action'] ) || isset( $_GET['vc_editable'] ) ) { | |
if ( defined( 'DOMAIN_MAPPING' ) ) { | |
remove_filter( 'plugins_url', 'domain_mapping_plugins_uri', 1 ); | |
remove_filter( 'theme_root_uri', 'domain_mapping_themes_uri', 1 ); | |
remove_filter( 'pre_option_siteurl', 'domain_mapping_siteurl' ); | |
remove_filter( 'pre_option_home', 'domain_mapping_siteurl' ); |
NewerOlder