Hello, I am obviously new to WordPress. I have spent over an hour searching the codex and google for this answer, to no avail.
I simply need to edit the URL anchored to the blog title.
Any help is appreciated.
Thank you in advance for your reply.
Hello, I am obviously new to WordPress. I have spent over an hour searching the codex and google for this answer, to no avail.
I simply need to edit the URL anchored to the blog title.
Any help is appreciated.
Thank you in advance for your reply.
Isn't that the URL to your blog?
That's probably in your theme's header.php file. If you are using the WordPress Default theme, the wp-content/themes/default/header.php and this code controls that:
<div id="header" role="banner">
<div id="headerimg">
<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
</div>
</div>
Related:
Function_Reference/get_option
Designing_Headers
Stepping Into Template Tags
Stepping Into Templates
Template Hierarchy
hmm, well, actually, I am using the buddyPress plugin, but it isnt the site itself, just part of it, similar to a subdomain.
The issue is, I need to basically add some custom links to the header area.
This topic has been closed to new replies.