Thank you so much for your help.
After writing this question, I realize I had the page for the iframe on the wrong template. I have a “Media Player” template that i would like to use because i have 3 difference “players” I will be using on 3 different pages and i would like to use the same template (format) for each one. So i changed the page to the proper template but it doesn’t pick up the content from the page (because there’s nothing there). The template code is:
<?php
/*
Template Name: Media Players
*/
?>
<?php get_header(); ?>
<?php get_footer(); ?>
and the page with the iframe on it is:
<center>
<h1>Sunday Morning Message</h1>
<div>
<iframe style="width: 908px; height: 400px;" src="https://gracecenterhouston.com/widget/player/6685" height="240" width="320" frameborder="0" align="middle"></iframe>
</div>
</center>
Since i will be creating two more pages with different iframe codes for use on this template, I need to know what i put between the “get header” and “get footer” on the template so it will call the proper page.
Right now i have the page displaying properly here:
https://gracechurchhouston.com/grace/
because i’ve put the iframe code directly into the template but that won’t work for the other 2 different player pages.
Also i will probably need to name the div so i can use CSS to make adjustments in the vertical spacing on the page?
Thank you!