admin管理员组文章数量:1410717
I want to display user's locations which they travelled on author box so how can I add this kind of input area to users profile? To more explain, If a user add "Londra,Paris"
to own profile, these cities will seem author box as a tag.Londra and Paris must be entered to different areas so users can add extra fields. If it is impossible, how can I divide cities which form of "Paris,Londra"
to use in city tags. I talk about divide all words by ,
. I hope I could explain me.
Or explode lines like Hello Kity, and the function counts how many is there location
I want to display user's locations which they travelled on author box so how can I add this kind of input area to users profile? To more explain, If a user add "Londra,Paris"
to own profile, these cities will seem author box as a tag.Londra and Paris must be entered to different areas so users can add extra fields. If it is impossible, how can I divide cities which form of "Paris,Londra"
to use in city tags. I talk about divide all words by ,
. I hope I could explain me.
Or explode lines like Hello Kity, and the function counts how many is there location
Share Improve this question edited Jan 10, 2020 at 16:05 nmr 4,5672 gold badges17 silver badges25 bronze badges asked Jan 10, 2020 at 15:32 ahmet taşahmet taş 11 bronze badge2 Answers
Reset to default 0You should look at the add_user_meta
function to capture the info from the user.
Then you can lookup the value using get_user_meta
.
Use this link for more info: https://developer.wordpress/reference/functions/add_user_meta/
You can divide the cities using explode function of php. It convert the strings to array on base of character added in the parameter. You can split the string on base of comma and print the location separately. Please use explode(",",$locations);
However, you can also use repeater field of acf. In this way users can add as many field as they wants. Please see the link here acf repeater field
本文标签: phpHow to add locations input to user profile
版权声明:本文标题:php - How to add locations input to user profile? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744837663a2627730.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论