Hey ... I have a blog page with video posts. The page is not showing the complete posts...they have just summary of the posts. I want the video box also shown in the page with the description of the post. In settigns- reading - I set it to full text , still no luck. Thanks in advance
Hello, Go to blog.php present in your theme directory and replace the current code Code: <?php if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail())) { ?> <?php inkthemes_get_thumbnail(675, 272); ?> <?php } else { ?> <?php inkthemes_get_image(675, 232); ?> <?php } ?> <?php the_excerpt(); ?> with code given below Code: <?php the_content(); ?> Sending image for reference This will solve your issue.