PluginProbe
PhastPress / 1.78
PhastPress v1.78
3.12 3.11 1.75 1.76 1.77 1.78 1.79 1.80 1.81 1.82 1.83 1.84 1.85 1.86 1.87 1.88 1.89 1.90 1.91 1.92 1.93 1.94 1.95 1.96 1.97 All 119 releases
← All changes | bootstrap.php +10 -0 1.761.78 View file →
@@ -78,4 +78,14 @@
78 78 __('PhastPress', 'phastpress'),
79 79 phastpress_get_plugin_sdk()->getAdminPanel()->render()
80 80 );
81 81 }
82 +
83 +add_action('ai1wm_exclude_content_from_export', function ($filters) {
84 + if (!is_array($filters)) {
85 + return $filters;
86 + }
87 + foreach (phastpress_get_plugin_sdk()->getCacheRootManager()->getAllCacheRoots() as $dir) {
88 + $filters[] = $dir;
89 + }
90 + return $filters;
91 +});