Topic: Output plugin from the menu

Я сделал свой плагин и теперь могу выводить его через shortcode.
Что нужно добавить, чтобы выбрать мой плагин из меню?

I made my plugin and now I can display it via shortcode.
What you need to add to my plugin choose from the menu?

http://i59.fastpic.ru/big/2014/0221/07/e66d94edd729dd46076fe3642f02ad07.png

2 2014-02-22 03:55:31

Re: Output plugin from the menu

выложи плагин или объясни подробнее что у тебя за плагин.

does ur plugin has it own page on website?
example: plugin "news" after installing it will create it own page on website called news, so u can go to ursit.com/news and it will be there.

Cause menu cant see plugin if it does not have it own page on website, thats why in menu u dont see blocks/snippet etc.

wht kind of plugin u create ?

(с) Roman Art
So far So good wink

RomanArt's Website

Re: Output plugin from the menu

Посмотрите как это сделано в плагине:

http://monstra.promo360.ru/plugin/question

Re: Output plugin from the menu

Попробуйте так:

// Register plugin
Plugin::register( __FILE__,                    
   __('MyPlugin', 'myplugin'),
   __('My plugin for Monstra', 'myplugin'),  
   '1.0.0',
   'xaoc',                 
   'http://monstra.org/',
   'myplugin');

Обратите внимание на последнюю строку.

Re: Output plugin from the menu

bender, Thank you. Indeed the case in the last line!
bender, спасибо. Дело действительно в последней строчке!