$page_id = cx_posts_find_page_id($slug);
if ($page_id) {
$template = 'post';
- $template_variables['post_id'] = cx_posts_find_page_id($slug);
+ $template_variables['post_id'] = $page_id;
}
}
$post_id = cx_posts_find_article_id($slug);
if ($post_id) {
$template = 'post';
- $template_variables['post_id'] = cx_posts_find_article_id($slug);
+ $template_variables['post_id'] = $post_id;
}
}
}