bishop01
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Internet Explore Tab Title/Name change. How?Got it working. Thank you all.
This did the trick. Not sure why it was showing ‘test’. go figure..
<title><?php elegant_titles(); ?></title>
with
<title>Whatever you want</title>
Forum: Fixing WordPress
In reply to: Internet Explore Tab Title/Name change. How?thanks. Nothing under epanel/core_funtion nor custom_function.php.
Where can I find bloginfo or blogname files? I saw some references to it.
Forum: Fixing WordPress
In reply to: Internet Explore Tab Title/Name change. How?here is the theme function.php – Any ideas?
I am using menu options to sort my navigation links. not sure if this has something to do with it. Also, this issue is only on the homepage tab and not any of the other pages.<?php
require_once(TEMPLATEPATH . ‘/epanel/custom_functions.php’);
require_once(TEMPLATEPATH . ‘/includes/functions/comments.php’);
require_once(TEMPLATEPATH . ‘/includes/functions/sidebars.php’);
load_theme_textdomain(‘SimplePress’,get_template_directory().’/lang’);
require_once(TEMPLATEPATH . ‘/epanel/options_simplepress.php’);
require_once(TEMPLATEPATH . ‘/epanel/core_functions.php’);
require_once(TEMPLATEPATH . ‘/epanel/post_thumbnails_simplepress.php’);
function register_main_menus(){
register_nav_menus(
array(
‘primary-menu’ => __( ‘Primary Menu’ )
)
);
};
if (function_exists(‘register_nav_menus’)) add_action( ‘init’, ‘register_main_menus’ );
$wp_ver = substr($GLOBALS[‘wp_version’],0,3);
if ($wp_ver >= 2.8) include(TEMPLATEPATH . ‘/includes/widgets.php’);?>Forum: Fixing WordPress
In reply to: Internet Explore Tab Title/Name change. How?nothing under the theme I am using.
Forum: Fixing WordPress
In reply to: Internet Explore Tab Title/Name change. How?Thanks. I found the header.php and the same code but don’t see
<title>test</title>Is there another place to look? What does this code mean?
<title><?php elegant_titles(); ?></title>Here is the header.php code.
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” <?php language_attributes(); ?>>
<head profile=”http://gmpg.org/xfn/11″>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
<title><?php elegant_titles(); ?></title>
<?php elegant_description(); ?>
<?php elegant_keywords(); ?>
<?php elegant_canonical(); ?>