show sidebar in post
In wordpress
if we do not edit the script , single post shows without sidebart, i do not like this kind of looking
how to do it?
Use tool to login in your hosting
find the file—single.php (wp-content/themes/default/single.php)
change this code
<div id="content" class="widecolumn"> to <div id="content" class="narrowcolumn">
then add <?php get_sidebar(); ?> this code above your <?php get_footer(); ?> code
so it looks like
<?php get_sidebar(); ?>
<?php get_footer(); ?>
now uplaod the new file , everything works


.png)