如何删除<meta http-equiv="content-type" content="text/html; charset=utf-8" />
这个PHP Joomla模板?因为我从Joomla和模板中复制了元标记:/它调用的Head.php
文件是:
<meta charset="<?php echo $this['system']->document->getCharset(); ?>">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<?php if($this['config']->get('responsive', true)): ?>
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php endif; ?>
<?php if (isset($error)): ?>
<title><?php echo $error; ?> - <?php echo $title; ?></title>
<?php else: ?>
<jdoc:include type="head" />
<?php endif; ?>
而Index.php
是:
// get theme configuration
include($this['path']->path('layouts:theme.config.php'));
?>
<!DOCTYPE HTML>
<html lang="<?php echo $this['config']->get('language'); ?>" dir="<?php echo $this['config']->get('direction'); ?>" data-config='<?php echo $this['config']->get('body_config','{}'); ?>'>
<head>
<?php echo $this['template']->render('head'); ?>
</head>
<body class="<?php echo $this['config']->get('body_classes'); ?>">
这是这个问题的图片: Link to the Problem ( imgur )
答案 0 :(得分:0)
如果我理解你的问题吧。是否要删除重复的图表集?
简单地删除第一个代码示例中的第一行。
您可以在index.php中尝试$doc->setHtml5(true);