我正在关注我的娱乐相关wordpress网站的名称描述代码。
<meta name="description" content="<?php if ( is_single() ) { echo $post->post_content; }else{ ?><?php echo "Website home page description";; } ?>" />
我正在使用此
更改代码 <meta name="description" content="Watch <?php the_title(); ?> Stream <?php the_title(); ?> />
但是用旧的主页更改此代码后,主页描述没有显示出来。
答案 0 :(得分:1)
由于您在The Loop之外执行此操作,因此应使用$post
对象:
<meta name="description"
content="Watch <?php echo $post->post_title; ?> Stream <?php echo $post->post_title; ?>" />