- Sold between 250 000 and 1 000 000 dollars
- Won a Competition
- Author was Featured
- Item was Featured
- Exclusive Author
- Repeatedly Helped protect Envato Marketplaces against copyright violations
- Europe
- Bought between 10 and 49 items
Hi guys, are there any method to display in the sidebar a page. But only a part which is before the <!- more -> tag? And also with images..So if I will put image before <!- more -> tag then it also should appear in the sidebar.php?
Thanks
- Author had a File in an Envato Bundle
- Author had a Free File of the Month
- Author was Featured
- Bought between 10 and 49 items
- Exclusive Author
- Has been a member for 4-5 years
- Item was Featured
- Referred between 50 and 99 users
- Sold between 10 000 and 50 000 dollars
Very easily 
<?php /* allows us to use the more tag */
global $more;
$more = 0;
query_posts("page_id=PAGEIDHERE");
while(have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content();
endwhile;
?>
Insert the ID of the page in place of PAGEIDHERE .
- Sold between 250 000 and 1 000 000 dollars
- Won a Competition
- Author was Featured
- Item was Featured
- Exclusive Author
- Repeatedly Helped protect Envato Marketplaces against copyright violations
- Europe
- Bought between 10 and 49 items
Very easily![]()
<?php /* allows us to use the more tag */ global $more; $more = 0; query_posts("page_id=PAGEIDHERE"); while(have_posts()) : the_post(); ?><?php the_title(); ?>
<?php the_content();endwhile;
?>
Insert the ID of the page in place of PAGEIDHERE .
I think I tried that already but it didn’t work for me.. I will try later again and will report about the results
- Author had a File in an Envato Bundle
- Author had a Free File of the Month
- Author was Featured
- Bought between 10 and 49 items
- Exclusive Author
- Has been a member for 4-5 years
- Item was Featured
- Referred between 50 and 99 users
- Sold between 10 000 and 50 000 dollars
Let me know what the problem is and I’ll see what I can do, since that code does work.
You may need to add this at the end of the block of code:
<?php wp_reset_query(); ?>
- Sold between 250 000 and 1 000 000 dollars
- Won a Competition
- Author was Featured
- Item was Featured
- Exclusive Author
- Repeatedly Helped protect Envato Marketplaces against copyright violations
- Europe
- Bought between 10 and 49 items
It’s me again… Image problem is solved. My bad. I left img tag in the page.php so I saw a image at the page, but I didn’t see it in the sidebar. Now img works… but it’s ignoring more tag… Full page is rendered at the sidebar.
Any clues?
- Author had a File in an Envato Bundle
- Author had a Free File of the Month
- Author was Featured
- Bought between 10 and 49 items
- Exclusive Author
- Has been a member for 4-5 years
- Item was Featured
- Referred between 50 and 99 users
- Sold between 10 000 and 50 000 dollars
Make sure you have:
global $more;
$more = 0;
in your sidebar, above where you include a page.
- Sold between 250 000 and 1 000 000 dollars
- Won a Competition
- Author was Featured
- Item was Featured
- Exclusive Author
- Repeatedly Helped protect Envato Marketplaces against copyright violations
- Europe
- Bought between 10 and 49 items
Make sure you have:in your sidebar, above where you include a page.global $more; $more = 0;
100% I have it.

