php include on index.php top of the page doesnt work
-
I have the following code on index.php I want to include this line of code to display author info on top of the loop.
<?php include 'author-top.php'; ?><!--author-->
I want it to display right after the header as shows here
<?php get_header(); ?> /* This is where I want my author div to display */ <?php include 'author-top.php'; ?><!--author--> <div id="primary" class="content-area"> <div id="content" class="site-content-home" role="main"> <?php if ( is_home() && ! is_paged() ) : ?> <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> <?php endif; ?> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to overload this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', 'home' ); ?> <?php endwhile; ?> <?php spun_content_nav( 'nav-below' ); ?> <?php elseif ( current_user_can( 'edit_posts' ) ) : ?> <?php get_template_part( 'no-results', 'index' ); ?> <?php endif; ?> </div><!-- #content .site-content --> </div><!-- #primary .content-area -->
This is what I get: https://gyazo.com/4154248fa37c84f9cb8f52871f186723.png
When I try to use the same ‘php include’ somewhere else at the bottom of the index.php code everything seems to work well. The problem is I need it on the top so it shows on the top on the small screens.
Is it anything I’m doing wrong? or it is that wordpress doesn’t allow to do use ‘php includes’ in there and if so why not.
php author include
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘php include on index.php top of the page doesnt work’ is closed to new replies.