/**
  * Set the number of posts to display to 5
  * This can be overridden using self::setPostCount($postCount)
  */
 public function __construct()
 {
     parent::__construct();
     $this->_pagerLimit = 5;
     $this->setPostListTemplate('wordpress/post/associated/list.phtml');
     $this->setTitle('Blog Posts Associated With This Product');
 }
Beispiel #2
0
	/**
	 * Set the number of posts to display to 5
	 * This can be overridden using self::setPostCount($postCount)
	 */
	public function __construct()
	{
		parent::__construct();
		$this->_pagerLimit = 5;
		$this->setPostListTemplate('wordpress/post/recent/list.phtml');
		$this->setTitle('Recent Posts');
	}