Wordpress プロジェクトの高度なカスタム メニューに正しい情報を受け取るために必要な 5 つのテーブルがあります。
これらは私が必要とする5つのテーブルと列です
wp_term_taxonomy - Need: term_id, taxonomy WHERE: taxonomy="nav_menu"
wp_terms - Need: term_id, name WHERE: term_id matches wp_term_taxonomy.term_id
wp_term_relationships - Need: object_id, term_taxonomy_id WHERE: term_taxonomy_id matches wp_term_taxonomy.term_id
wp_postmeta - Need: post_id, meta_key, meta_value WHERE: post_id matches wp_term_relationships.object_id AND meta_key="_menu_item_object_id"
wp_posts - Need: id, post_title, post_status, guid, post_parent, post_type WHERE: id matches wp_postmeta.meta_value
But that is not it I then need to:
wp_posts - Need: guid, post_parent, post_type WHERE: post_parent matches wp_posts.id AND post_type="attachment"
wp_postmeta - Need: post_id, meta_key, meta_value WHERE: post_id matches wp_posts.id AND meta_key="description"
これが少し意味をなすことを願っています。
私がやろうとしているのは、基本的に、WordPress カスタム メニュー機能のページのリストを含むドロップダウン メニューを作成し、各ページの注目の画像と、表示する小さなテキストがあるカスタム フィールドの説明を取得することです。
最終的なメニューは、スタイリングで次のようになります。
これまでのところ、メニューを機能させることに成功しましたが、非常に優れたタイプのコードでは成功していません。
<ul>
<?php
$getMenus = mysql_query('SELECT term_id, taxonomy FROM wp_term_taxonomy WHERE taxonomy="nav_menu"');
while ($addMenus = mysql_fetch_assoc($getMenus)) {
$menus_id = $addMenus['term_id'];
?>
<?php
$getTerms = mysql_query('SELECT term_id, name FROM wp_terms WHERE term_id='.$menus_id.'');
while ($addTerms = mysql_fetch_assoc($getTerms)) {
?>
<li>
<span class="menu-sub-headline"><?php echo $addTerms['name']; ?></span>
<ul>
<?php
$getTermsRelationship = mysql_query('SELECT object_id, term_taxonomy_id FROM wp_term_relationships WHERE term_taxonomy_id='.$menus_id.'');
while ($addTermsRelationship = mysql_fetch_assoc($getTermsRelationship)) {
$termsRelationship = $addTermsRelationship['object_id'];
$getMetaRelationship = mysql_query('SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id='.$termsRelationship.' and meta_key="_menu_item_object_id"');
while ($addMetaRelationship = mysql_fetch_assoc($getMetaRelationship)) {
$metaKeyValue = $addMetaRelationship['meta_value'];
?>
<?php
$result = mysql_query('SELECT id, post_title, post_status, guid, post_parent FROM wp_posts WHERE id='.$metaKeyValue.'');
while ($row = mysql_fetch_assoc($result)) {
?>
<li>
<span><a href="<?php echo $row['guid']; ?>"><?php echo $row['post_title']; ?></a></span>
<?php $thumb = $row['id']; ?>
<ul class="menu-sub-sub-item-ul">
<li>
<span class="menu-product-headline"><?php echo $row['post_title']; ?></span>
<?php $getThumb = mysql_query('SELECT guid, post_parent, post_type FROM wp_posts WHERE post_parent='.$thumb.' AND post_type="attachment"');
while ($addThumb = mysql_fetch_assoc($getThumb)) {
?>
<img src="<?php echo $addThumb['guid']; ?>"/>
<? } ?>
<?php $getMeta = mysql_query('SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id='.$thumb.' AND meta_key="description"');
while ($addMeta = mysql_fetch_assoc($getMeta)) {
?>
<p><?php echo $addMeta['meta_value']; ?></p>
<a href="<?php echo $row['guid']; ?>"><img src="/wp-content/themes/mygind-co/images/design/read_more.png"/></a>
<?php } ?>
</li>
</ul>
<?php }}} ?>
</ul>
</li>
<? } ?>
<?php } ?>
</ul>
うまくいけば、同じ結果を達成するのを手伝ってくれる人もいますが、より良いクエリを使用して、結合を適切に使用する方法を説明してくれるかもしれません. 私は SQL にまったく慣れていないため、知識が非常に限られています。私はこれより前に結合の指示を読み、自分で試してみましたが、このメニューは試行錯誤するには少し難しすぎるようです.