我的自定义WP插件未在自定义程序中显示

时间:2017-01-03 16:56:05

标签: php wordpress

这是我开发的第一个Wordpress插件,如果我问的话,请原谅。还使用Wordpress v4.7

我创建了一个文件animate-css.php并将其添加到我本地托管网站的plugins文件夹中。我登录并激活了该插件,但由于某些原因,尽管我按照文档https://codex.wordpress.org/Writing_a_Plugin进行了操作,但该部分仍未显示。

代码:

<?php 

/*
Plugin Name: Animate-css 
Plugin URI: http://noneasyet.sorry
Description: Enter the animate class you would like to add to any DOM element.
Version: 1.0
Author: Shannon Williams
Author URI:  http://stillnoneyet.againsorry
*/

function mytheme_customize_register( $wp_customize ) {
//All our sections, settings, and controls will be added here

$wp_customize->add_section( 'Animate Elements' , array(
'title'      => __( 'Animate Elements' ),
'priority'   => 10,
 ));
}

add_action( 'customize_register', 'mytheme_customize_register' );

?>

提前致谢。

1 个答案:

答案 0 :(得分:0)

啊哈!

首先,这是StackExchange上为Wordpress发布问题的错误部分。其次,正确的部分和答案是here

您始终需要定义部分,控件和设置。上面的链接更详细地解释了它。