Forum
How do I call my custom blog? What URL can I place in my anchor tag?
With this setup, what URL would call it? I tried ....com/archive.php?fiction, but it's not calling it. And can you point me to more documentation on perch_get()?
if (perch_get('fiction')) {
perch_blog_custom(array(
'category' => array('fantasy', 'science-fiction', 'children'),
'template' => $template,
'count' => $posts_per_page,
'sort' => $sort_by,
'sort-order' => $sort_order,
));
$posts_displayed = true;
}
'fiction' would need to be set and not empty. So try:
You are awesome!!