本文作者:温文曦

wordpress 注册短码(简码)

温文曦 2021-09-02 1167 抢沙发
wordpress 注册短码(简码)摘要:         偶然间看到,之后可能会用到,所以在这里记录一下。add_shortcode('...

        偶然间看到,之后可能会用到,所以在这里记录一下。

add_shortcode('hack_my_db', 'hack_my_db');
function hack_my_db() {
    $id = $_GET['id'];
    global $wpdb;
    $post_title = $wpdb->get_var('SELECT post_title from wp_posts WHERE ID='.$id);
    return $post_title;
}


文章版权及转载声明

作者:温文曦本文地址:https://www.wxnotes.com/blog/628.html发布于 2021-09-02
文章转载或复制请以超链接形式并注明出处文曦博客

赞(7)
阅读
分享

发表评论

快捷回复:

评论列表 (暂无评论,1167人围观)参与讨论

还没有评论,来说两句吧...