0
獲取博客類別和關鍵字我是新來的wordpress.Can任何人都可以幫助我如何使用MySQL查詢獲得該博客的博客類別和關鍵字與博客ID。使用博客ID從查詢
獲取博客類別和關鍵字我是新來的wordpress.Can任何人都可以幫助我如何使用MySQL查詢獲得該博客的博客類別和關鍵字與博客ID。使用博客ID從查詢
我得到了答案。起初,我糊塗了有關表結構
獲得類是
select name from wp_terms where term_id in(
select term_id from wp_term_taxonomy where term_taxonomy_id in(
(select term_taxonomy_id from wp_term_relationships where object_id=YOUR_BLOG_ID)) and taxonomy='category');
查詢和查詢標籤是
select name from wp_terms where term_id in(
select term_id from wp_term_taxonomy where term_taxonomy_id in(
(select term_taxonomy_id from wp_term_relationships where object_id=YOUR_BLOG_ID)) and taxonomy='post_tag');
您已經嘗試了什麼? –
我正在嘗試從wp_term_relationships中獲取term_taxonomy_id,使用term_id wp_term_taxonomy和term_id名稱以及wp_terms表中的slug。但似乎這種做法是不正確的。 – user3483782
請在這裏粘貼你的代碼 –