Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Plugin Name: LJR-pollDisplay
- Description: Display poll's from lj.rossia.org
- Version: 0.0.1
- Author: IDT & Tolik Punkoff
- Author URI: http://tolik-punkoff.com/
- License: any
- */
- include ('getpoll.php');
- function ljrpoll_shortcode($atts)
- {
- //достаем ID опроса
- extract(shortcode_atts(array(
- 'id' => -1,
- ), $atts));
- //Если id не задан, надо вывести сообщение об ошибке
- if ($id==-1)
- {
- $ans='Poll ID not set!';
- }
- else
- {
- $ans=GetPoll($id);
- }
- return $ans;
- }
- add_shortcode ('ljrpoll','ljrpoll_shortcode');
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement