內容簡介
- 這個插件包含了在所有專案中通常被認為是最常用的功能和設置。- 它是為了與axio-starter一起使用,但也可以單獨使用。- 使用特定於網站的插件來配置此插件的規格。- 此插件取代了之前的Aucor Core,與同一功能和過濾器名稱兼容。- 抽象類別,根目錄,功能和子功能的模型,包括安全設置和速度優化,儀表板清理,前端/後台,封面編輯連結,本地化等等。
外掛標籤
開發者團隊
📦 歷史版本下載
原文外掛簡介
The plugin contains the features and settings generally deemed to be the most commonly used in all projects. It is meant to be used together with axio-starter but functions on its own as well. Use the site specific plugin to configure the specs of this plugin.
This plugin replaces the previous Aucor Core and is backwards compatible with same function and filter names working.
Contents
Abstract Classes
Directory: root
The models the features are built on
Features and subfeatures
Directory: /features/
Features (containing subfeatures) ranging from security settings to speed optimizations and dashboard cleanup.
admin:
front page edit link
gallery
image-links
login
admin menu cleanup
notifications
profile cleanup
remove customizer
classic-editor:
tinymce
dashboard:
cleanup
recent widget
remove panels
front-end:
clean up empty html nodes
excerpt
html fixes
localization:
string translations
plugins:
acf
cookiebot
gravityforms
redirection
public post preview
seo
yoast
polyfills:
acf
polylang
security:
disable admin email check
disable file edit
disable unfiltered html
head cleanup
hide users
remove comment moderation
remove commenting
speed:
limit revisions
move jquery
remove emojis
remove metabox
debug:
style guide
wireframe
Helper functions
Directory: root
Contains functions, like enhanced (internal) debugging, for all features/subfeatures to use
Configuration (optional)
“Active” subfeatures
The style guide subfeature overrides the WP function the_content() with default markup for testing the most common tag styles, when the GET parameter ‘?ac-debug=styleguide’ is found in the url. You can however replace this markup with a filter:
add_filter(‘axio_core_custom_markup’, function($content) {
$content = ‘custom markup’;
return $content;
});
The wireframe subfeature adds outlines to all elements on page to help with visual debugging, when the GET parameter ‘?ac-debug=wireframe’ is found in the url. It also appends ‘?ac-debug=wireframe’ to the href value in all anchor tags on the page to keep the feature enabled during navigation.
Disable feature/subfeature
By default all the features/subfeatures are on, but you can disable the ones you don’t want with filters in theme or plugin. Here is a minimal code snippet you can use to disable features:
