Title: The shortcode in PHP doesnt work
Last modified: September 11, 2017

---

# The shortcode in PHP doesnt work

 *  Resolved [ragulin](https://wordpress.org/support/users/ragulin/)
 * (@ragulin)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/the-shortcode-in-php-doesnt-work/)
 * Hey, the result you see at the link:
    [http://skkelti.cz/index1/](http://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: http://codex.wordpress.org/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](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fthe-shortcode-in-php-doesnt-work%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [wponlinesupport](https://wordpress.org/support/users/wponlinesupport/)
 * (@wponlinesupport)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/the-shortcode-in-php-doesnt-work/#post-9488720)
 * Hello [@ragulin](https://wordpress.org/support/users/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](https://wordpress.org/support/users/ragulin/)
 * (@ragulin)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/the-shortcode-in-php-doesnt-work/#post-9490816)
 * Thanks
 *  [wponlinesupport](https://wordpress.org/support/users/wponlinesupport/)
 * (@wponlinesupport)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/the-shortcode-in-php-doesnt-work/#post-9495262)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-responsive-recent-post-slider_9c9a9b.
   svg)
 * [WP Responsive Recent Post Slider/Carousel](https://wordpress.org/plugins/wp-responsive-recent-post-slider/)
 * [Support Threads](https://wordpress.org/support/plugin/wp-responsive-recent-post-slider/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-responsive-recent-post-slider/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-responsive-recent-post-slider/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-responsive-recent-post-slider/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [wponlinesupport](https://wordpress.org/support/users/wponlinesupport/)
 * Last activity: [8 years, 7 months ago](https://wordpress.org/support/topic/the-shortcode-in-php-doesnt-work/#post-9495262)
 * Status: resolved