內容簡介
此外掛會建立並顯示片段,以顯示您的自訂欄位資料。您可以透過將這些程式碼貼到您的主題中來顯示自訂欄位資料。
這個外掛能省去主題開發者/設計師撰寫程式碼時間。
當您使用 ACF 時,會顯示 ACF 的標籤欄。預設的標籤欄是隱藏的。
如果您在使用 ACF 時需要預設的標籤欄,請將以下程式碼加入到您的主題 functions.php 檔案裡
//從這裡開始
add_action( ‘init’, ‘register_default_tab’);
function register_default_tab() {
register_cfs_tabs(‘Defaulttab’);
}
// 到這裡
擴充套件外掛可於http://wp.php-web.net/?p=275取得。
此外掛支援 Advanced Custom Fields Repeater 外掛和 Advanced Custom Fields Flexible 外掛。
由於 ACF5 變更極大,支援 ACF5 可能需要一些時間。如果您想要快速更新以支援 ACF5,您可以透過 http://pledgie.com/campaigns/8706 向我捐款。
外掛標籤
開發者團隊
原文外掛簡介
This plugin creates and shows the snippets which display your custom field data. You can display your custom field data, by pasting these codes to your theme.
This plugin saves the time for theme developers/designers writing codes.
When you are using ACF, tab fields for ACF is displayed. The default tab is hidden.
If you need the default tab while you are using ACF, please add this code below into your theme’s functions.php
// start from here
add_action( ‘init’, ‘register_default_tab’);
function register_default_tab() {
register_cfs_tabs(‘Defaulttab’);
}
// end
Extension plugin is available from http://wp.php-web.net/?p=275
This plugin supports Advanced Custom Fields Repeater addon and Advanced Custom Fields Flexible addon.
It may take times to support ACF5, since ACF5 changes dramatically. If you want quick update to support ACF5, you can pay for me http://pledgie.com/campaigns/8706
