Я пытаюсь добавить ссылку на главную navBar
для последнего сообщения.Результат должен быть ограничен типом записи ACF
.Я не уверен, как ссылаться на тип сообщения ACF
.Я полагаю, что я неправильно использую термин категории.
// Заменяет заполнитель пользовательского URL-адреса URL-адресом последнего сообщения
function replace_placeholder_nav_menu_item_with_latest_post( $items, $menu, $args ) {
// Loop through the menu items looking for placeholder(s)
foreach ( $items as $item ) {
// Is this the placeholder we're looking for?
if ( '#latestpost' != $item->url )
continue;
// Get the latest post
$latestpost = get_posts( array(
'numberposts' => 1,
'category' => 'shows',
) );
if ( empty( $latestpost ) )
continue;
// Replace the placeholder with the real URL
$item->url = get_permalink( $latestpost[0]->ID );
}
// Return the modified (or maybe unmodified) menu items array
return $items;
}