This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* 因為在開發佈景主題的時候,會使用其他外掛的 shortcodes 來輔助。 | |
* 掛在佈景主題的 functions.php 裡面,可以提醒使用者安裝相容的外掛。 | |
*/ | |
add_action( 'admin_init', 'check_plugin'); | |
function check_plugin() { | |
$plugins = array( | |
'plugin-name' => array( | |
'name' => 'plugin-name', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Post Type: YouTube Videos. | |
*/ | |
$labels = array( | |
"name" => __( "YouTube Videos", "YourTextDomain" ), | |
"singular_name" => __( "YouTube Video", "YourTextDomain" ), | |
"menu_name" => __( "YouTube Video", "YourTextDomain" ), | |
"all_items" => __( "All YouTube Videos", "YourTextDomain" ), |
NewerOlder