• Resolved zascar

    (@zascar)


    My Blog

    Where it says: “This space is for introducing your blog to other users. You can also use it for any other purposes. This includes important announcements, welcome text or just anything you feel like adding here. Keep it small though -:)”

    I cannot fnd where to edit this.

    Theme can be found here: https://wordpress.reviewitonline.net/ (1 down)

    Thanks for your help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • it is in your theme’s header.php

    Thread Starter zascar

    (@zascar)

    Thanks Sam, yes that’s where I thought it would have been, but it’s not.

    Here’s the header code:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head profile="https://gmpg.org/xfn/11">
    
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    <title>
    
    <?php bloginfo('name'); ?>
    <?php if(is_home()) { ?>
     - <?php bloginfo('description'); ?>
    <?php } ?>
    <?php if(is_single()) { ?>
    <?php wp_title(); ?>
    <?php } ?>
    <?php if(is_404()) { ?>
     - Page Not Found
    <?php } ?>
    <?php if(is_search()) { ?>
     - Search Results for: <?php echo wp_specialchars($s, 1); ?>
    <?php } ?>
    
    </title>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <script src="<?php bloginfo('template_directory'); ?>/js/tabcontent.js" type="text/javascript"></script>
    
    <?php wp_head(); ?>
    
    </head>
    <body>
    
    <div id="container">
    
    <!-- ^^^^^^^^^^^^^^ header code ^^^^^^^^^^^^^^ -->
    <div id="header">
    
    	<div id="pagenav">
    	<ul>
    	<li<?php if(!is_page() ) { ?> class="current_page_item"<?php } ?>><a href="<?php bloginfo('home'); ?>">Home</a></li>
    	<?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
    	</ul>
    	</div>
    
    	<div id="searchform">
    	<form method="get" action="<?php bloginfo('url'); ?>/">
    	<fieldset>
    	<label><?php _e('Blog Search'); ?></label>
    	<input type="text" value="<?php the_search_query(); ?>" name="s" id="searchinput" />
    	<input type="submit" value="Search" id="searchbutton" />
    	</fieldset>
    	</form>
    	</div>
    
    	<div id="logo">
    	<h1><a href="<?php echo get_option('home'); ?>/" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1>
    	<div class="description"><?php bloginfo('description'); ?></div>
    	</div>
    
    	<?php include('about.php'); ?>
    
    </div>
    <div class="clear"></div>
    <!-- ^^^^^^^^^^^^^^ header code ^^^^^^^^^^^^^^ -->

    Does it perhaps link to another file where the text is maybe?

    This is driving me nuts so if anyone can help i’d really appreciate it…
    Cheers

    Thread Starter zascar

    (@zascar)

    Edit: Found it – it was in the about.php

    Doh!

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can’t find where to edit this part – can anyone help?’ is closed to new replies.