jankowalski 3 Report post Posted June 23, 2012 I was able to create a section with custom loop, but it doesn t have any title. I want to have a custom word MORE with h3 tag above the loop. What should i add to this code? Thanks class PageLinesPostLoop2 extends PageLinesSection { function section_template() { query_posts( array( 'post_type' => array( 'video', 'book' ) ) ); $theposts = new PageLinesPosts(); $theposts->load_loop(); } } Share this post Link to post Share on other sites
Danny+ 1,327 Report post Posted June 26, 2012 Hi Jankowalski, I'm by no means a PHP expert, but the code below may be what you're looking for. [code]class PageLinesPostLoop2 extends PageLinesSection { function section_template() { ?> More array( 'video', 'book' ) ) ); $theposts = new PageLinesPosts(); $theposts->load_loop(); } } ?>[/code] Please search our forums, before posting! Share this post Link to post Share on other sites