BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
CTR
/
wp-content
/
themes
/
go
📤 Upload
📝 New File
📁 New Folder
Close
Editing: single.php
<?php /** * Partial: single.php * Display permalinks or full articles * * @package Go */ get_header(); // Start the Loop. while ( have_posts() ) : the_post(); get_template_part( 'partials/content' ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); } endwhile; get_footer();
Save
Cancel