• Resolved ragulin

    (@ragulin)


    Hey, the result you see at the link:
    https://skkelti.cz/index1/
    My code:

    <?php
    /**
     * The main template file.
     *
     * This is the most generic template file in a WordPress theme
     * and one of the two required files for a theme (the other being style.css).
     * It is used to display a page when nothing more specific matches a query.
     * E.g., it puts together the home page when no home.php file exists.
     * Learn more: https://codex.www.ads-software.com/Template_Hierarchy
     *
     * @package sporty
     * @since sporty 1.0
     */
    
    get_header(); ?>
    
    		<div id="primary" class="content-area">
    			<div id="content" class="site-content" role="main">
                                </p
    			<?php 
                            echo do_shortcode( '[recent_post_slider design="design-3" show_category_name=“false“]
    ' );
                            
                            
                            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', get_post_format() );
    					?>
    
    				<?php endwhile; ?>
    
    				<?php sporty_content_nav( 'nav-below' ); ?>
    
    			<?php else : ?>
    
    				<?php get_template_part( 'no-results', 'index' ); ?>
    
    			<?php endif; ?>
    
    			</div><!-- #content .site-content -->
    		</div><!-- #primary .content-area -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @ragulin
    Thank you for reaching to us.

    There was a little mistake in your code. i noticed that you didn’t completed <p> tag.

    Please Use this code :

    get_header(); ?>
    
    		<div id="primary" class="content-area">
    			<div id="content" class="site-content" role="main">
                               
    			<?php 
                            echo do_shortcode( '[recent_post_slider design="design-3" show_category_name="false"]
    ' );
                            
                            
                            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', get_post_format() );
    					?>
    
    				<?php endwhile; ?>
    
    				<?php //sporty_content_nav( 'nav-below' ); ?>
    
    			<?php else : ?>
    
    				<?php get_template_part( 'no-results', 'index' ); ?>
    
    			<?php endif; ?>
    
    			</div><!-- #content .site-content -->
    		</div><!-- #primary .content-area -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    if you facing any query please late me know.
    Thank you.

    Thread Starter ragulin

    (@ragulin)

    Thanks

    If you like our plugin please give ratings and review. we are happy to hear that.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘The shortcode in PHP doesnt work’ is closed to new replies.