从Drupal节点移除样式标记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从Drupal节点移除样式标记相关的知识,希望对你有一定的参考价值。

A simple script to run with [drush](http://drupal.org/project/drush) to clean all Drupal nodes containing style tags.
  1. <?php
  2.  
  3. $results = db_query("SELECT DISTINCT nid from node_revisions WHERE body REGEXP '<style>.*</style>' OR body REGEXP '<style>.*</style>'");
  4.  
  5. while($nid = db_result($results)) {
  6. $node = node_load($nid);
  7. unset($node->teaser);
  8. $node->body = preg_replace('@<style[^>]*?>.*?</style>@siu', '',$node->body);
  9. node_save($node);
  10. }
  11. ?>

以上是关于从Drupal节点移除样式标记的主要内容,如果未能解决你的问题,请参考以下文章

drupal 7删除样式标签形式rss视图字段

Drupal/Ubercart ...节点样式?

如何从drupal 6中的视图中删除节点

Drupal 6:视图:列出带有标记节点的分类术语

如何从出口页面中的元标记获取标记值 - Drupal 7?

如何在 Drupal 6 的视图中显示完整节点?