如何在WordPress中创建没有页眉和页脚的页面并加载事件日历的单个事件作为弹出窗口

时间:2017-10-24 06:28:21

标签: wordpress

两个问题在一起

  1. 如何在WordPress中创建没有页眉和页脚的页面和
  2. 将事件日历插件的单个事件帖子加载为该页面上的弹出窗口
  3. TheEventCalendar链接 - https://wordpress.org/plugins/the-events-calendar/

2 个答案:

答案 0 :(得分:2)

<?php
/**
 * Template Name: Calender Page
 * If it is saprate page then you can define template name and use it with page OR if it is post single page then save as single-your-post-slug.php
 */
?>

<html <?php language_attributes(); ?> class="no-js">
    <head>
        <meta charset="<?php bloginfo( 'charset' ); ?>">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <?php wp_head(); ?>
    </head>
    <body>
        <?php
            while ( have_posts() ) : the_post();    
                the_content();
            endwhile;
        ?>
    <?php wp_footer(); ?>
    </body>
</html>

答案 1 :(得分:0)

您可以创建一个页面模板,仅显示页面内容而不显示页眉和页脚。 例如:

<?php /* Template Name: Event calendar popup */
while ( have_posts() ) : the_post();
the_content();
endwhile;
?>

将此文件放在主题文件夹中。 然后创建一个页面并为其提供此模板。在编辑器中添加短代码。