我正在尝试将下拉列表(通过HTML字符串)插入到post
我有。
我想把它放在帖子信息之前,但放在网站导航下方。横杆和收割台。
在屏幕截图中,您会注意到它已添加到顶部。我想把它移到指定的区域。
因此,您可以在顶部看到“选择文章”和下拉列表。我希望在内容之前插入(其中
<div id="content">
).
当前代码:
add_action(\'wp_head\', \'append_header\');
function append_header(){
//Close PHP tags
?>
<script type="text/javascript" src="/wp-content/themes/grow-minimal-child/customjs.js"></script>
<?php //Open PHP tags
$args = [\'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'posts_per_page\' => -1];
$titles = get_post_titles($args);
$dropdown = create_dropdown_html($titles);
echo $dropdown;
}
我也尝试过使用
the_content
并附加
$dropdown
html,但这只是在“测试帖子请忽略”和帖子信息行后插入下拉列表。
See this screenshot如何将代码挂在标题和导航栏之后,而挂在内容本身之前?