WP获取页面内容

时间:2013-09-13 16:00:18

标签: javascript php wordpress

我试图在javascript函数中检索页面内容。当我回显测试变量$htmlblock时,javascript灯箱工作正常。但当我回显$contactinfo时,它会在新标签页中打开页面。

<?php  
    // retireve content from "contact" page
    $contactpageid=85;
    $contactpage = get_page($contactpageid);
    $contactinfo = apply_filters('the_content', $contactpage->post_content);
    //test variable
    $htmlblock = '<strong>Contact Information</strong><br/><table><tr><td id="name"><strong>NAME</strong></td><td id="phone"><a href="tel:+18888888888">888-8888</a></td><td id="email"><a href="mailto:name@email.com" target="_blank">name@email.com</a></td></tr></table>';
?>


<script language="javascript" type="text/javascript">
    function openLightbox() {
        lightbox('<?php echo $contactinfo; ?>');
    }
</script>

1 个答案:

答案 0 :(得分:0)

$contactinfo可能包含HTML标记,其中$htmlblock只是一个简单的字符串。

我不确定你能用Lightbox做到这一点。您可能需要查看Lightbox文档(您正在使用的版本)如何插入HTML内容。

或者,您可以尝试剥离HTML。

$contactinfo = apply_filters('the_content', strip_tags($contactpage->post_content));

http://php.net/manual/en/function.strip-tags.php