Link to home
Start Free TrialLog in
Avatar of APD Toronto
APD TorontoFlag for Canada

asked on

WordPress TK Title

Hi Experts,

In WP's _TK theme php files, can any one tell me where I can find the following?

<header>
		<h1 class="page-title">Vitamins and Supplements</h1>
	</header>

Open in new window


for some reason, In my custom template I don't get that HTML, and therefore don't see my Page Title?
Avatar of Shaun Vermaak
Shaun Vermaak
Flag of Australia image

It is in header.php
<title><?php wp_title( '|', true, 'right' ); ?></title>
<?php
/**
 * The Header for our theme.
 *
 * Displays all of the <head> section and everything up till <div id="main">
 *
 * @package _tk
 */
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">

	<title><?php wp_title( '|', true, 'right' ); ?></title>

	<link rel="profile" href="http://gmpg.org/xfn/11">
	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">

	<?php wp_head(); ?>
</head>

Open in new window

Avatar of APD Toronto

ASKER

Sorry, that's the <head>, not the <header>
Missed that. Will check
Thanks!
ASKER CERTIFIED SOLUTION
Avatar of Shaun Vermaak
Shaun Vermaak
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Sorry for the Lorem Ipsum... It's just that E-E now demands that we write more stuff, when all we really want to do is communicate the URL of a potentially useful piece of information.  I'm not strong enough in WP to know for sure if the Designing Headers link is 100% on point, but it looked pretty close!
It was in content-page.php