我有五个表需要接收正确的信息到 Wordpress 项目中的高级自定义菜单
这些是我需要的五个表和列
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 很陌生,这是我知识非常有限的原因。在此之前,我已经阅读了加入的说明,并自己进行了尝试,但似乎这个菜单对我来说有点太难试错了。