- function my_wp_plugin_tag_action($content,$tag,$function,$args = FALSE) {
- // すべての正規表現に一致
- preg_match_all($tag,$content,$matches);
- if (count($matches) >0) {
- // 重複をフィルター
- $matches = array_unique($matches);
- // ループスルー
- $tag_results = array();
- $found_tags = array();
- foreach ($matches as $idx = > $match) {
- //引数配列を構築します
- $full_tag = array_shift($match);
- //関数の出力と完全なタグテキストを置換配列に追加します
- $tag_results[] = my_wp_plugin_buffer_func($function,$ match);
- $found_tags[] = $full_tag;
- }
- // すべてのタグを対応するテキストに置き換えます
- $content = str_replace($found_tags,$tag_results,$content);
- }
- return $content;
- }
复制幣
|