0

我正在尝试使用图像作为 WordPress 中博客文章的标题/标题(主题是 mybase 的 0.5,mythem.es。我不确定这是否相关!)。

标题部分正在识别我输入的 HTML(img src 标签等),但是当它显示在页面上时,出现了轻微错误。图像显示正确,但">正上方有一个。我在标题中的 HTML 代码如下(我不能使用真正的 HTML,因为这是针对客户端的):

<center><img src="http://example.com/blog/wp-content/uploads/2012/03/example.jpg" alt="Example Blog | Example 2012" title="Example" width="525" height="60" /></center>

任何想法为什么我在我的图像上方得到这个奇怪的代码?

4

2 回答 2

2

您无法将 html 插入标题框,因为 wordpress 在您保存帖子时会清理标题字段

于 2012-04-13T12:24:23.913 回答
0

但是,您可以使用自定义字段在 WP 标题中使用 html。

  1. 创建一个名为 HTML_title 的自定义字段并添加您的 html
  2. 在您的站点中输出自定义字段:

<?php $html_title = get_post_meta($post->ID, "HTML_title", true);

if ($html_title) { ?>

  <h1><?php echo $html_title; ?></h1>`

<?php } else { ?>

 <h1><?php the_title(); ?></h1>

<?php } ?>

在此处阅读全文:http: //digwp.com/2009/10/custom-fields-for-html-post-titles/

于 2012-09-04T08:23:50.807 回答