Need PHP Help > Basics

carryout

Junior Member
Joined
Nov 7, 2008
Messages
137
Reaction score
34
By the way this is all using wordpress...


<h2><?php _e('About the Site:'); ?></h2>
<ul><li id="about"><?php bloginfo('description'); ?></li></ul>

<?php if (function_exists('wp_theme_switcher')) { ?>
<h2>Themes:</h2>
<?php wp_theme_switcher('dropdown'); ?>
<?php } ?>

<h2><?php _e('About Me:'); ?></h2>
<ul><li><?php mytheme_about() ?></li></ul>



Question #1: I need to figure out how to change the ---> ('decription') Soi can write something different, I cant figure out where to configure it on wordpress so i figured I'd have to do it manually...



Happy Holidays & Merry Xmas!
 
Try deleting the
Code:
bloginfo('description');
bit and then put something like
Code:
echo "your description here";
 
Back
Top