How to convert this prepare statement to use placeholders in Wordpress $wpdb?

喜夏-厌秋 提交于 2019-12-02 08:26:43

My bad, this is so simple! Wordpress uses two placeholders %s and %d.

%s should be used when passing strings to the database

while:

%d should be used for integers.

My problem above is that I've mixed them up, I use %d for strings or %s for integers. So the problem is resolved by using the correct placeholders for your specific data type. Problem solved.

For example if you are querying the database using id with php variable $id, the placeholder should be %d because it's integer otherwise for strings, such as names, etc. use %s.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!