如何在WordPress插件中添加页面?

时间:2013-10-15 13:27:50

标签: php jquery wordpress

我使用jQuery在弹出框中使用iframe。我需要更改iframe,每次我必须在该特定帧中加载不同的页面。

如何在iframe内的这些页面中包含WordPress功能,而不使用add_admin menu选项?

这是jQuery:

jQuery(function () { 
    jQuery('#start').click(function() { 
        jQuery('#popup_container').css('display','block'); 
        jQuery('#popup_back').css('display','block'); 
        jQuery('<iframe />', { 
            id: 'contentIframe', 
            'class': 'iframe_container', 
            frameborder: "0",    
            scrolling: "no", 
            marginheight: "0",
            marginwidth: "0", 
            src: main_path+"box.php"
        }).appendTo('#iframe_cont'); 
        jQuery(".dashboard_tital").focus(); 
        console.log('ok');  
    });  
});

0 个答案:

没有答案