插件面板中没有显示WMP插件?

时间:2011-03-03 作者:janoChen

我刚下载了WMD Editor plugin.
由于某种原因,没有显示在Plugins 菜单

文件夹被调用wmd-editor/

wmd-editor.php:

<?php
/*
Plugin Name: WMD Editor
Plugin URI: http://c.hadcoleman.com/wordpress/wmd-editor
Description: Adds the <a href="http://wmd-editor.com/">WMD Editor</a> to the comment field, to make life easier for your commenters.
Version: 1.0
Author: Chad Coleman
Author URI: http://c.hadcoleman.com
 */

/*
This is a simple plugin that just adds the javascript call to the header of your template. You can gather more info on this project at http://code.google.com/p/wmd/
*/ 

    // function for head output sytles
    function wmd_header() {
        global $cb_path;
        $cb_path = get_bloginfo(\'wpurl\')."/wp-content/plugins/wmd-editor";  //URL to the plugin directory
        $hHead = "\\n"."<!-- Start WMD Editor -->"."\\n";
        $hHead .= " <script language=\\"javascript\\" type=\\"text/javascript\\" src=\\"{$cb_path}/wmd.js\\" ></script>\\n";
        $hHead .= "<!-- End WMD Editor -->"."\\n";
        print($hHead);
    }

    add_action(\'wp_head\', \'wmd_header\'); ?>

1 个回复
最合适的回答,由SO网友:t31os 整理而成

必须是你安装的东西或自定义代码导致的问题,它似乎正好适合我。

enter image description here

如果你的问题是为什么在管理端没有额外的菜单项,那么答案是因为不是每个插件都有一个管理页面,一些插件提供配置选项,其他插件只是做一些没有可配置选项的事情(我想这取决于作者的意图)。

希望我在任何情况下都能帮上忙。。

结束

相关推荐