Best place to change default blog address?
-
and I already tried Admin/options
Here’s the deal, I am trying to integrate WP in my website
for these I use the Loop and the sidebar.Also I think I need to have
indexTest.php?page=weblog&p=1
indexTest.php?page=weblog&c=1To get single post I have added
function general_link()
{
/* function to get current page */
echo $_SERVER[‘PHP_SELF’].”?”.$_SERVER[‘QUERY_STRING’];
}and
<h2 class=”storytitle”>&p=<?php the_ID(); ?>” rel=”bookmark”><?php the_title(); ?></h2>
i replace the_permalink with general_link(); ?>&p=<?php the_ID(); ?>
But now I notice the_category uses the blog_address you insert. I that case I get
indexTest.php?page=weblog/?cat=1
but I want
indexTest.php?page=weblog&cat=1Any suggestions how to get this done??
- The topic ‘Best place to change default blog address?’ is closed to new replies.