protected function get_total_post_count()
	{
		if(!isset($this->total_post_count)) {
        global $container;
        $repository = new Jacobemerick\Web\Domain\Blog\Post\MysqlPostRepository($container['db_connection_locator']);
        $this->total_post_count = $repository->getActivePostsCountByCategory($this->category->link);
    }
		return $this->total_post_count;
	}