element.php
14 years ago
element_after.php
14 years ago
error.php
14 years ago
evaluate.php
14 years ago
index.php
14 years ago
options.php
14 years ago
preview.php
14 years ago
process-complete.php
14 years ago
process.php
14 years ago
tag.php
14 years ago
template.php
14 years ago
preview.php
12 lines
| 1 | <div id="post-preview"> |
| 2 | <?php if ($this->errors->get_error_codes()): ?> |
| 3 | <?php $this->error() ?> |
| 4 | <?php endif ?> |
| 5 | |
| 6 | <?php if (isset($title)): ?> |
| 7 | <h2 class="title"><?php echo $title ?></h2> |
| 8 | <?php endif ?> |
| 9 | <?php if (isset($content)): ?> |
| 10 | <div class="content"><?php echo apply_filters('the_content', $content) ?></div> |
| 11 | <?php endif ?> |
| 12 | </div> |