. */ //tell wordpress to register the demolistposts shortcode add_shortcode("archive-org", "archiveorg_handler"); function archiveorg_handler($incoming) { $incoming = shortcode_atts(array( "embed" => "", "width" => get_option('archive_width'), "height" => get_option('archive_height'), "playlist" => "" ), $incoming); //run function that actually does the work of the plugin if ($incoming["playlist"] == "true") { $playlist = "&playlist=1"; } else { $playlist = ""; } $embed_html = '
'; return $embed_html; } function archiveorg_actions() { add_options_page("Archive Org", "Archive Org", 1, "Archive-Org", "arch_admin"); } function arch_admin() { include('archive-org_admin.php'); } add_action('admin_menu', 'archiveorg_actions'); ?>