This commit is contained in:
Jerry
2020-08-17 14:22:21 +03:00
parent 20ed5734c2
commit 5599784db7
5 changed files with 326 additions and 32 deletions

View File

@@ -2,19 +2,27 @@
get_header();
$post = get_post();
?>
<?=$post->ID ?>
<?=get_the_title($post); ?>
<?=get_post_meta($post->ID,'title2',true); ?>
<?=get_the_post_thumbnail_url(); ?>
<?=get_permalink(); ?>
<?=get_the_content(null,false, $post); ?>
<?php $categories = get_the_category();
foreach($categories as $category):?>
<?=$category->term_id; ?>
<?=$category->slug; ?>
<?php endforeach;?>
<br>
<div class="content no-pb">
<div class="top-panel empty"></div>
<div class="cont back-white">
<div class="text-page">
<h1><?=get_the_title($post); ?></h1>
<br>
<?=get_the_content(null,false, $post); ?>
</div>
</div>
<div class="main-page">
<div class="mp-small-block">
<div class="cont">
<div class="sb-head">Interested? Get to know more</div>
<div class="buttons">
<a href="#" class="button xxl mp-top-right">Request a demo</a>
<a href="#" class="button xxl mp-top-left">Sign Up For Free</a>
</div>
</div>
</div>
</div>
</div>
<?php
get_footer();