将以下代码放入functions.php
1 2 3 4 5 6 7 8 9 10 11 12 13 | //获取最后一篇post的ID值 function GetLastPostId() { global $wpdb; $query = "SELECT ID FROM $wpdb->posts ORDER BY ID DESC LIMIT 0,1"; $result = $wpdb->get_results($query); $row = $result[0]; $id = $row->ID; return $id; } |
前台调用显示、也可放入其他插件中使用:
1 | <?php echo GetLastPostId();?> |
原文链接:https://xiaohost.com/2388.html,转载请注明出处。
评论0