Hmmm. Well, I think that pointed me to the right file, though I couldn’t find anything with those names. I’m looking in the bfa_postinfo.php file and found this bit of code:
// 1st category
if ( strpos($postinfo_string,’%category%’) !== FALSE ) {
$all_categories = get_the_category();
$category = $all_categories[0]->cat_name;
$category_notlinked = $category;
$postinfo = str_replace(“%category%”, $category_notlinked, $postinfo);
}
// 1st category, linked
if ( strpos($postinfo_string,’%category-linked%’) !== FALSE ) {
$all_categories = get_the_category();
$category = $all_categories[0]->cat_name;
$category_linked = ‘cat_ID) .
‘”>’ . $category . ‘‘;
$postinfo = str_replace(“%category-linked%”, $category_linked, $postinfo);
}
// Categories, linked
if ( strpos($postinfo_string,’%categories-linked’) !== FALSE ) {
$category_linked_separator = preg_match(“/(.*)%categories-linked\(‘(.*?)’\)(.*)/i”,
$postinfo_string,$category_linked_matches);
ob_start();
the_category($category_linked_matches[2]);
$categories_linked = ob_get_contents();
ob_end_clean();
$postinfo = preg_replace(“/(.*)%categories-linked\((.*?)\)%(.*)/i”, “\${1}” .
$categories_linked. “\${3}”, $postinfo);
}
// Categories, not linked
if ( strpos($postinfo_string,’%categories(‘) !== FALSE ) {
$category_separator = preg_match(“/(.*)%categories\(‘(.*?)’\)(.*)/i”,
$postinfo_string,$category_matches);
$categories = “”;
foreach((get_the_category()) as $category) {
$categories .= $category->cat_name . $category_matches[2];
}
// remove last separator
$categories = preg_replace(“/”.$category_matches[2].”$/mi”, “”, $categories);
$postinfo = preg_replace(“/(.*)%categories\((.*?)\)%(.*)/i”, “\${1}” .
$categories. “\${3}”, $postinfo);
}
Is this what I need to remove? Should it be commented out or deleted?
Thanks!