Hi iRuss
Question 1: Is there a way that I can add an image slider in the “Header Image”?
Dashboard / Appearance / install plugins
Meta Slider set checkbox
install and activate
Once click Dashboard
Once you have activated, please set the slider image at dashboard / Meta Slider
After slider plug-in configuration is complete, the settings for the display then in the theme customizer
Dashboard / Appearance / Customize
Add-ones
Slider for HomePage set your slide show.
Saved
Please make sure that the slide show to display the blog is being displayed
example
https://www.tenman.info/wp3/tips/
Question 2: Is there a way that I can add a video of some sort in the “Header Image”?
It possible,needs child theme
child theme example
https://www.tenman.info/download/child-raindrops.zip
header.php
/**
* Custom Header
*/
$raindrops_title_in_the_header_check = raindrops_warehouse_clone( 'raindrops_place_of_site_title' );
if ( true == $raindrops_link_unique_text || $raindrops_title_in_the_header_check == 'header_image' ) { ?>
<?php echo raindrops_header_image( 'elements' );
} else { ?>
<?php echo raindrops_header_image( 'home_url');
}
Change from above code to below code
if ( ( is_home() == true && is_front_page() == true ) || // default
( is_home() == false && is_front_page() == true ) // static front page
) {
?>
<!--Your Video here-->
<div class="oembed-container">
<iframe width="1280" height="720" src="https://example.com/your-video" frameborder="0" allowfullscreen></iframe>
</div>
<?php
}else{
/**
* Custom Header
*/
$raindrops_title_in_the_header_check = raindrops_warehouse_clone( 'raindrops_place_of_site_title' );
if ( true == $raindrops_link_unique_text || $raindrops_title_in_the_header_check == 'header_image' ) { ?>
<?php echo raindrops_header_image( 'elements' );
} else { ?>
<?php echo raindrops_header_image( 'home_url');
}
}
Save child theme / header.php
Upload child theme and activate
Note:
Maybe Must Needs
<div class="oembed-container">...</div>
for Responsive video
Do not remove it.
Thank you