PluginProbe
Extendify / 0.9.3
Extendify v0.9.3
3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 0.7.0 All 126 releases
extendify / editorplus / editorplus-template.php

editorplus-template.php in Extendify 0.9.3, at editorplus/editorplus-template.php

51 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template Name: Extendify Template
4 * Template Post Type: post, page
5 */
6
7 ?>
8 <?php wp_head(); ?>
9 <body <?php body_class(); ?>>
10 <div class="ep-temp-container ep-container">
11
12 <div class="ep-temp-entry-content">
13 <?php
14 if (have_posts()) {
15 while (have_posts()) {
16 the_post();
17 the_content();
18 }
19 }
20 ?>
21
22 </div>
23
24
25 </div><!-- #site-content -->
26 <style>
27 .ep-temp-container {
28 margin-left: auto;
29 margin-right: auto;
30 }
31 @media(min-width: 700px) {
32 .ep-temp-container [class*=extendify-] [class*=wp-block] > * {
33 margin-top: 0px;
34 }
35 .ep-temp-container [class*=wp-block] > * .wp-block-button__link {
36 border-radius: 0px !important;
37 }
38 .ep-temp-container .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter) {
39 margin-top:0px;
40 }
41 body {background-color: #fff;}
42 html, body {
43 font-size: 16px !important;
44 }
45 }
46 </style>
47 </body>
48
49 <?php
50 wp_footer();
51