Guest User

Untitled

a guest
Feb 21st, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. add_action("wp_footer", function() {
  2. $post_id = get_the_ID();
  3.  
  4. if (get_post_type( $post_id ) == "post" || is_archive() || is_category()) {
  5. $thumbnail = get_the_post_thumbnail_url ( $post_id );
  6.  
  7. ob_start();
  8.  
  9. echo do_shortcode("[av_slideshow_full img_copyright='' size='featured' min_height='0px' stretch='' control_layout='av-control-default' slider_navigation='av-navigate-arrows av-navigate-dots' nav_visibility_desktop='' nav_arrow_color='' nav_arrow_bg_color='' nav_dots_color='' nav_dot_active_color='' src='' attachment='' attachment_size='' position='top left' repeat='no-repeat' attach='scroll' img_copyright_font='' av-desktop-font-img_copyright_font='' av-medium-font-img_copyright_font='' av-small-font-img_copyright_font='' av-mini-font-img_copyright_font='' img_copyright_color='' img_copyright_bg='' animation='slide' transition_speed='' autoplay='false' interval='5' img_scale='' img_scale_end='10' img_scale_direction='' img_scale_duration='3' img_scale_opacity='1' conditional_play='' img_scrset='' lazy_loading='disabled' alb_description='' id='av-main-slider-banner' custom_class='area-overlay' template_class='' av_uid='av-lsj9if5f' sc_version='1.0']
  10. [av_slide_full slide_type='image' id='3473' video='https://' mobile_image='' fallback_link='https://' title='' video_format='' video_ratio='16:9' caption_pos='caption_bottom' custom_title_size='' av-desktop-font-size-title='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' custom_content_size='' av-desktop-font-size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' custom_title='' custom_content='' heading_tag='' heading_class='' link_apply='' link='lightbox' link_target='' button_label='Click me' button_color='light' link1='manually,http://' link_target1='' button_label2='Click me' button_color2='light' link2='manually,http://' link_target2='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_uid='av-29mte6' sc_version='1.0' video_autoplay='' video_controls='' video_mute='' video_loop='' overlay_enable=''][/av_slide_full]
  11. [/av_slideshow_full] ");
  12.  
  13. $shortcode_output = ob_get_clean();
  14.  
  15. echo $shortcode_output;
  16. }
  17. }, 10, 1);
  18.  
  19. add_action("ava_after_main_title", function() {
  20. $post_id = get_the_ID();
  21.  
  22. if (get_post_type( $post_id ) == "post" || is_archive() || is_category()) {
  23. $thumbnail = get_the_post_thumbnail_url ( $post_id );
  24.  
  25. ob_start();
  26.  
  27. echo '
  28. <div class="av-slider-banner-container"></div>
  29. ';
  30.  
  31. $shortcode_output = ob_get_clean();
  32.  
  33. echo $shortcode_output;
  34. }
  35. }, 10, 1);
  36.  
  37. function avf_custom_exec_sc_only_mod( $exec_sc_only, $obj_sc, $atts, $content, $shortcodename, $fake )
  38. {
  39. return true;
  40. }
  41. add_filter( 'avf_alb_exec_sc_only', 'avf_custom_exec_sc_only_mod', 10, 6 );
  42.  
  43. function av_custom_inline_script_slider_banner() {
  44. wp_add_inline_script(
  45. 'jquery',
  46. "(function($) {
  47. $(document).ready(function() {
  48. $('#av-main-slider-banner').appendTo('.av-slider-banner-container');
  49. });
  50. })(jQuery);"
  51. );
  52. }
  53. add_action('wp_enqueue_scripts', 'av_custom_inline_script_slider_banner');
  54.  
Add Comment
Please, Sign In to add comment