在wordpress

时间:2017-02-03 19:42:53

标签: php wordpress

我创建了一个名为testsave.php的文件,该文件正在wordpress的数据库中写入

$content1 = '<img class="alignnone  wp-image-11" src="http://web.qp2qp.com/qp2qp2/'.$file.'.png" alt="" />';
$sql = "INSERT INTO wp_njvt_posts (post_date,post_date_gmt,post_author, post_content, post_title, post_excerpt, post_password, post_name, to_ping, pinged, post_content_filtered, guid, post_mime_type)
VALUES (NOW(),NOW(),'1','', '', '', '','$file','','','','http://www.sktcho.com/?p=$file','')";

testsave.php被放入/ wp-includes现在我需要使用用数据库插入数据库中的数据

我试图将此代码放在文件中并使用$ current_user-&gt; ID而不是'1'来获取用户ID,但这不起作用

$current_user = wp_get_current_user();
/**
 * @example Safe usage: $current_user = wp_get_current_user();
 * if ( !($current_user instanceof WP_User) )
 *     return;
 */
echo 'Username: ' . $current_user->user_login . '<br />';
echo 'User email: ' . $current_user->user_email . '<br />';
echo 'User first name: ' . $current_user->user_firstname . '<br />';
echo 'User last name: ' . $current_user->user_lastname . '<br />';
echo 'User display name: ' . $current_user->display_name . '<br />';
echo 'User ID: ' . $current_user->ID . '<br />';

如何将用户ID放在数据库中的插入数据中?

2 个答案:

答案 0 :(得分:1)

  1. get_current_user_id()

  2. 为什么要将文件放在/ wp-includes /中?这是一个核心目录,不应修改。

答案 1 :(得分:0)

你可以像这样使用get_current_user_id()函数......

$content1 = '<img class="alignnone  wp-image-11" src="http://web.qp2qp.com/qp2qp2/'.$file.'.png" alt="" />';
$sql = "INSERT INTO wp_njvt_posts (post_date,post_date_gmt,post_author, post_content, post_title, post_excerpt, post_password, post_name, to_ping, pinged, post_content_filtered, guid, post_mime_type)
VALUES (NOW(),NOW(),'".get_current_user_id()."','', '', '', '','$file','','','','http://www.sktcho.com/?p=$file','')";

享受!