PHP Call to External Database

时间:2012-09-05 作者:Leonard

我正在使用Studio Press的圆滑儿童主题,并希望对该外部数据库进行PHP调用,以使其显示如下链接:http://www.escort332.org/tuskegeecadets.php . 主题页是此全宽页:http://escort332.org/wordpress1/tusk...skegee-cadets/. 有没有办法在页面本身中添加链接到数据库的PHP代码?我还需要访问其他页面的数据库。这在《创世纪》框架或儿童主题中是否可行。任何帮助都将不胜感激。

2 个回复
SO网友:vmassuchetto

我不能太具体地回答你的问题,但你当然可以用$wpdb 实例到access another database:

$db = new wpdb(\'user\', \'password\', \'dbname\', \'dbhost\');
$results = $db->get_results(\'..query..\');

SO网友:Rafee

<?php
/* get the database configuration automatically starts here */

$server_url = $_SERVER["SERVER_NAME"];
$doc_root = $_SERVER["DOCUMENT_ROOT"];

require($doc_root . \'/wp-config.php\');


$post_id = 5;


query_posts( \'p=\' . $post_id );

global $more;
$more = 0;

// the Loop
while (have_posts()) : 
    the_title();
    the_content( \'Read the full post »\' );
endwhile;



?>
我已经尝试并找到了解决方案。

结束

相关推荐

通过作为插件一部分的函数包含一个PHP文件?

我为此挣扎了一整天,现在我在这里。。。我有一个包含php的联系人表单。目前,我的主题索引中有这段代码。php包括:if ( is_page(\'contact\') ) { include(\"../contact.php\"); } 其呈现和功能符合预期:http://www.derekbeck.com/1775/contact/然而,将其编辑到主题中是有问题的,因为主题升级(我每次都要硬编码),现在尤其是因为我正在为移动用户使用移动主题,他们在使用移动主题时不会看到我