# extendify/0.9.3/editorplus/editorplus-template.php

Extendify, version 0.9.3. 51 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.9.3/code/editorplus/editorplus-template.php
- Raw: https://pluginprobe.com/plugins/extendify/0.9.3/raw/editorplus/editorplus-template.php
- Modified: 2022-01-06T18:08:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/0.9.3/code/editorplus/editorplus-template.php#L10-L20`.

```php
<?php
/**
 * Template Name: Extendify Template
 * Template Post Type: post, page
 */

?>
<?php wp_head(); ?>
<body <?php body_class(); ?>>
    <div class="ep-temp-container ep-container">

        <div class="ep-temp-entry-content">
            <?php
            if (have_posts()) {
                while (have_posts()) {
                    the_post();
                    the_content();
                }
            }
            ?>

        </div>


    </div><!-- #site-content -->
    <style>
    .ep-temp-container {
        margin-left: auto;
        margin-right: auto;
    }
    @media(min-width: 700px) {
            .ep-temp-container [class*=extendify-] [class*=wp-block] > * {
                margin-top: 0px;
            }
            .ep-temp-container [class*=wp-block] > * .wp-block-button__link {
                border-radius: 0px !important;
            }
            .ep-temp-container .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter) {
                margin-top:0px;
            }
            body {background-color: #fff;}
            html, body {
                font-size: 16px !important;
            }
        }
    </style>
</body>

<?php
wp_footer();

```
