Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Jeremy Groot
/
stellervista-Intranet
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
e5316e8a
authored
2023-03-08 13:30:52 -0500
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
video
Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent
88ab7157
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
14 deletions
wp-content/themes/understrap-child/page.php
wp-content/themes/understrap-child/page.php
View file @
e5316e8
...
...
@@ -56,22 +56,24 @@ $container = get_theme_mod( 'understrap_container_type' );
</div>
<!-- #content -->
<?php
$video
=
get_post_meta
(
get_the_id
(),
'video'
,
true
);
$video_cc
=
get_post_meta
(
get_the_id
(),
'video'
,
true
);
if
(
$video
!=
""
){
?>
<div
class=
"modal fade"
id=
"Modal_Video"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"exampleModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog modal-dialog-centered modal-xl"
role=
"document"
>
<div
class=
"modal-content"
>
<div
class=
"modal-body"
>
<button
type=
"button"
class=
"btn-close"
data-bs-dismiss=
"modal"
aria-label=
"Close"
></button>
<div
class=
"body-content"
>
<video
width=
"100%"
controls
>
<source
src=
"
<?php
echo
$video
;
?>
"
type=
"video/mp4"
>
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
</div>
<div
class=
"modal-dialog modal-dialog-centered modal-xl"
role=
"document"
>
<div
class=
"modal-content"
>
<div
class=
"modal-body"
>
<button
type=
"button"
class=
"btn-close"
data-bs-dismiss=
"modal"
aria-label=
"Close"
></button>
<div
class=
"body-content"
>
<video
width=
"100%"
controls
>
<source
src=
"
<?php
echo
$video
;
?>
"
type=
"video/mp4"
>
<track
src=
"
<?php
echo
$video_cc
;
?>
"
label=
"English"
kind=
"captions"
srclang=
"en-us"
default
>
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
</div>
<?php
}
?>
</div>
<!-- #page-wrapper -->
...
...
Please
register
or
sign in
to post a comment