Closed. This question needs details or clarity。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗?添加详细信息并通过editing this post阐明问题。
                        
                        4年前关闭。
                                                                                            
                
        
有没有一种快速简便的方法可以从键以字符串开头的usermeta表中获取用户选项?

例如,相当于以下内容的内容:

SELECT meta_value FROM usermeta WHERE meta_key LIKE 'StartString%'

最佳答案

您可以在元查询中使用比较,就像这样;

$user_query = new WP_User_Query(
    array(
        'key' => meta_key,
        'value' => 'StartString%',
        'compare' => 'LIKE',
    )
);

关于php - 以[closed]开头的Wordpress get_user_option(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28614725/

10-10 17:42