File "guest-posting.php"
Full Path: /home/mba/public_html/wp-content-20250807152928/themes/twentytwenty-child-theme/guest-posting.php
File size: 719 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/* Template Name:Guest Posting*/
get_header();
?>
<section class="guest_post">
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="d-flex">
<?php
while(have_posts()):
the_post();
the_content();
endwhile;
wp_reset_query();
?>
</div>
<div class="button-submit">
<?php if(is_user_logged_in()){ ?>
<a href="<?php echo home_url();?>/wp-admin/post-new.php" class="more-link">Submit Your Guest Post Application Now</a>
<?php }
else{ ?>
<a href="<?php echo home_url();?>/login" class="more-link">Submit Your Guest Post Application Now</a>
<?php }
?>
</div>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>