File "contribution_temp.php"

Full Path: /home/mba/public_html/wp-content-20250807152928/themes/twentytwenty-child-theme/contribution_temp.php
File size: 940 bytes
MIME-type: text/x-php
Charset: utf-8

<?php 
/*Template Name: Contribution guidelines */
get_header();

?>
<div class="container">
<div class="col-md-12">
<h1 class="entry-title  text-center">Contribution guidelines</h1>
 <?php
    // TO SHOW THE PAGE CONTENTS
    while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop -->
        <div class="entry-content-page">
            <?php the_content(); ?> <!-- Page Content -->
        </div><!-- .entry-content-page -->

    <?php
    endwhile; //resetting the page loop
    wp_reset_query(); //resetting the page query
    ?>
<?php 
if(is_user_logged_in()){
?>
<a class="btn-primary py-3 px-3 mt-3" style="display: inline-block;" href="https://millionaire-business-articles.com/creator/">Submit Now</a>
<?php }else{ ?>
<a class="btn-primary py-3 px-3 mt-3" style="display: inline-block;" href="<?php echo site_url("login/"); ?>">Submit Now</a>
<?php } ?>
</div>
</div>
<?php 
get_footer();
?>