您可以尝试以下操作来修改属于页面的菜单项链接:
add_filter( \'nav_menu_link_attributes\', function( $atts, $item, $args, $depth )
{
if(
isset( $item->object )
&& \'page\' === $item->object
&& isset( $args->theme_location )
&& \'primary\' === $args->theme_location
)
$atts[\'href\'] = home_url(
sprintf( \'/#/page/%d\', $item->object_id )
);
return $atts;
}, 10, 4 );
我们以主主题位置为目标。
这将提供此类链接:
http://example.tld/#/page/12345