Hi
I have a includes/header.php file with the following meta tags code
In the php pages, I have the following
Can the meta description and meta keywords be editable on each page template, if so how can it be done please
I have a includes/header.php file with the following meta tags code
- Code: Select all
<meta name="keywords" content="<?php echo $pgKeywords ?>">
<meta name="description" content="<?php echo $pgDesc ?>">
In the php pages, I have the following
- Code: Select all
<?php
$pgDesc="Description";
$pgKeywords="Keywords";
include ( 'includes/header.php' );
?>
Can the meta description and meta keywords be editable on each page template, if so how can it be done please