例如,我使用数据库获取 id=1 - location = image url
就是这样
include 'config.php';
$GetPicId = $_GET["pid"]; // Picture ID from Index page
$query=mysql_query("SELECT * FROM fbcover WHERE id=$GetPicId") or die(mysql_error());
$result=mysql_fetch_array($query);
$PicLocation =$result['location'];
现在我想使用 wordpress
例如,我试图通过使用 post id 来获取附件图片 url
include 'config.php';
$GetPicId = $_GET["pid"]; // Picture ID from Index page
$query=mysql_query("SELECT * FROM wp_posts WHERE id=$GetPicId") or die(mysql_error());
$result=mysql_fetch_array($query);
$PicLocation =$result['guid'];
我总是得到这个消息“创建表单数据失败”
我怎样才能得到附件图片的网址
$PicLocation =$result['location'];
我真的需要帮助...谢谢