-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-easteregg.php
38 lines (32 loc) · 1 KB
/
page-easteregg.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
Template Name: Easter egg Marvel
*/
get_header(); ?>
<div id="primary" class="content-area-imdb">
<main id="main" class="site-main" role="main">
<?php
// Start the loop.
while ( have_posts() ) : the_post();
// Include the page content template.
get_template_part( 'template-parts/content', 'page' ); ?>
<div class="center">
<div class="ruffalo">
<a onclick="playRuffalo()">
<img src="/wp-content/uploads/2019/05/mark-ruffalo.png">
</a>
</div>
</div>
<?php
// End of the loop.
endwhile;
?>
</main><!-- .site-main -->
</div><!-- .content-area -->
<script>
function playRuffalo(){
let playruffalo = new Audio("/wp-content/uploads/2019/05/Yeah-Mark-Ruffalo-Huh.mp3");
playruffalo.play();
}
</script>
<?php get_footer(); ?>