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
$(document).on('click', '.element-class', function() { | |
window.dispatchEvent(new Event('resize')); | |
}); |
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
/// Сторінка налаштувань | |
// create custom plugin settings menu | |
add_action('admin_menu', 'baw_create_menu'); | |
function baw_create_menu() | |
{ | |
//create new top-level menu | |
add_menu_page('Global Settings', 'Theme Settings', 'administrator', FILE, 'baw_settings_page', 'dashicons-admin-generic'); | |
//call register settings function |
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
<video class="rellax" id="vid" poster="/wp-content/themes/letda/assets/images/video-poster2.jpg" | |
playsinline="playsinline" | |
autoplay="autoplay" | |
preload="auto" | |
loop="loop" | |
muted="muted" | |
onloadstart="this.volume=0" | |
"defaultMuted"> | |
<source src="/wp-content/themes/letda/assets/videos/<?= $atts['video_name']; ?>.mp4" type="video/mp4"> | |
</video> |
OlderNewer