从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.
<?php $results = db_query("SELECT DISTINCT nid from node_revisions WHERE body REGEXP '<style>.*</style>' OR body REGEXP '<style>.*</style>'"); while($nid = db_result($results)) { $node = node_load($nid); node_save($node); } ?>
以上是关于从Drupal节点移除样式标记的主要内容,如果未能解决你的问题,请参考以下文章