內容簡介
文章特色圖示外掛程式:允許將字體圖示加入文章標題並提供選項,讓我們能夠
使用字體圖示來替換文章縮圖。
支援:
dashicons
genericons
font-awesome
請參考此處:Demo 1 和 Demo 2
支援文章和頁面。但我們也可以新增到自訂文章類型中。提供 hooks 即 icon_post_type。
優先支援
如果您正在尋找更多功能、付費支援或自訂 WordPress 工作,那麼您也可以聘請我。我的電子郵件地址:[email protected]。
// Our filter callback function
function icon_post_type_callback( $types ) {
$types = array('post', 'page', 'product');
return $types;
}
add_filter( 'icon_post_type', 'icon_post_type_callback', 10, 1 );
外掛標籤
開發者團隊
原文外掛簡介
Post Featured Icon: It allows to add font icons to post title, and there is option so that we can
replace post thumbnail with font icon.
It supports:
dashicons
genericons
font-awesome
Please check here: Demo 1 and Demo 2
It supports post,page.But we can add to custom post types to. It provides hooks i.e icon_post_type .
Priority Support
If you are looking for more features, paid support or Custom WordPress Work, then you can hire me too. My email id : [email protected] .
// Our filter callback function
function icon_post_type_callback( $types ) {
$types = array('post', 'page', 'product');
return $types;
}
add_filter( 'icon_post_type', 'icon_post_type_callback', 10, 1 );
