word标签中的wordpress post_content

时间:2014-12-14 14:18:00

标签: php mysql wordpress

我的标题单元格为空,所以我想在元描述标记中显示post_content数据。

当我在标题中提供一些细节时,它可以工作,但是对于内容细节,它不起作用。 当我使用the_content它工作,但它显示谷歌adsense数据但是在我的mysql单元格中没有adsense代码。

我在wordpress的header.php文件中尝试了这个。

<?php 

 $content = get_the_content();
 $content = apply_filters('the_content', $content);
 $postn991=strip_tags($content);
 echo' <meta name="description" content="'.$postn991.'" />';
   ?>

我已经尝试了post_content,blog_content几乎所有可能的组合,但它不起作用。

上面的代码在meta中提供了一些东西,但它的google ads.and我想从元名称内容的mysql中获取post_content的数据

1 个答案:

答案 0 :(得分:0)

使用以下代码解决了这个问题

 $p = get_post($pid);
$description = strip_tags($p->post_content);
   $postn991=strip_tags($description);