Two questions .. I know it is not about Buddypress, but if it wasn’t urgent, I would not have asked.
-
I need to remove the
Archive for the ‘NAME OF CATEGORY’ Category
from my posts. How do I do this?
This is what I have on my template:
`
`
<html xmlns="http://www.w3.org/1999/xhtml" ><meta http-equiv="Content-Type" content="; charset=” />
<?php if (is_home () ) { bloginfo('name'); } elseif ( is_category() ) { single_cat_title(); if(get_bloginfo('name') != "") echo ' – ' ; bloginfo('name'); }
elseif (is_single() ) { single_post_title(); }
elseif (is_page() ) { bloginfo(‘name’); if(get_bloginfo(‘name’) != “”) echo ‘: ‘; single_post_title(); }
else { wp_title(”,true); } ?>
<script type="text/javascript" src="/script.js”>
<link rel="stylesheet" href="” type=”text/css” media=”screen” />
<link rel="alternate" type="application/rss+xml" title="” href=”” />
<link rel="alternate" type="application/atom+xml" title="” href=”” />
<link rel="pingback" href="” />`
`Then the RSS at the bottom of my page:
I need it to be http://mysite.com/dev/page/feed
So I did that, but it does not work.
My code currently
`
`
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Two questions .. I know it is not about Buddypress, but if it wasn’t urgent, I would not have asked.’ is closed to new replies.