概要
テーマの function.php で不要な処理やアクション、フィルターを削除する。
不要なものは主に以下の関連の処理。
- カレンダー
- コメント
- locale
- インデント挿入
削除する関数
削除する関数を以下にリストアップ。
- vicuna_link()
- vicuna_calendar($initial = true)
- delete_vicuna_calendar_cache()
- indent_entry_body($content)
- indent_comment_body($content)
- get_vicuna_pings_count()
- get_all_comments()
- vicuna_edit_comments_link($link = ‘Edit This Comments.’, $before = ”, $after = ”)
削除するアクション
削除するアクションを以下にリストアップ。
- add_action( ‘save_post’, ‘delete_vicuna_calendar_cache’ );
- add_action( ‘delete_post’, ‘delete_vicuna_calendar_cache’ );
- add_action( ‘update_option_start_of_week’, ‘delete_vicuna_calendar_cache’ );
- add_action( ‘update_option_gmt_offset’, ‘delete_vicuna_calendar_cache’ );
- add_action(‘the_content’, indent_entry_body, 99);
- add_filter(‘comment_text’, indent_comment_body, 100);
あわせて読みたい関連記事
- Newer: ヘッダー関連
- Older: 日付関連の表示を更新日に変更