首页 > CMS > 织梦DEDE > 正文

织梦CMC内容页调用SEO标题的方法

2024-07-09 22:52:13
字体:
来源:转载
供稿:网友

内容页调用SEO标题:在<title></title>之间加入以下代码:

  1. {dede:field name='typeid' runphp='yes'}
  2. [email protected];
  3. global $dsql;
  4. $sql="select seotitle from arctype where id=$id";
  5. $row=$dsql->getOne($sql);
  6. @me=$row["seotitle"];
  7. {/dede:field}

文章扩展:

内容页调用栏目描述:

把默认的<meta name="description" content="{dede:field.description function='html2text(@me)'/}" />

改成:

  1. <meta name="description" content="{dede:field name='typeid' runphp='yes'}
  2. [email protected];
  3. global $dsql;
  4. $sql="select description from arctype where id=$id";
  5. $row=$dsql->getOne($sql);
  6. @me=$row["description"];
  7. {/dede:field}" />

内容页调用栏目关键字:

把默认的<meta name="keywords" content="{dede:field.keywords/}" />

改成:

  1. <meta name="keywords" content="{dede:field name='typeid' runphp='yes'}
  2. [email protected];
  3. global $dsql;
  4. $sql="select keywords from arctype where id=$id";
  5. $row=$dsql->getOne($sql);
  6. @me=$row["keywords"];
  7. {/dede:field}" />
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表