欢迎光临
我们一直在努力

在WordPress后台文章编辑器的上方或下方添加提示内容

建站超值云服务器,限时71元/月

WordPress 3.5 新增了一对非常有用的挂钩,可以快速在WordPress后台文章编辑器的上方或下方添加提示内容,下面是一个简单的例子,直接将代码添加到主题的 functions.php 文件:

1
2
3
4
5
6
7
8
9
10
11
function below_the_title() {
    echo '<h3>在编辑器上方添加的提示内容</h3>';
}
 
add_action( 'edit_form_after_title', 'below_the_title' );
 
function below_the_editor() {
    echo '<h4>在编辑器下方添加的提示内容</h4>';
}
 
add_action( 'edit_form_after_editor', 'below_the_editor' );

function below_the_title() { echo ‘<h3>在编辑器上方添加的提示内容</h3>’; } add_action( ‘edit_form_after_title’, ‘below_the_title’ ); function below_the_editor() { echo ‘<h4>在编辑器下方添加的提示内容</h4>’; } add_action( ‘edit_form_after_editor’, ‘below_the_editor’ );

结果如下图所示:

在WordPress后台文章编辑器的上方或下方添加提示内容

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在WordPress后台文章编辑器的上方或下方添加提示内容
分享到: 更多 (0)