gpt4 book ai didi

php - 如何在管理页面wordpress中创建选项卡菜单

转载 作者:可可西里 更新时间:2023-11-01 13:40:02 26 4
gpt4 key购买 nike

这是我的更新代码

if (is_admin())
{
add_action('admin_menu', 'user_menu');
}

function user_menu()
{
add_menu_page('Pesananku', 'Pesananku', 'subscriber', 'userslug',
'user_funct',get_template_directory_uri().'/img/favicon.ico',22);
}
function user_funct()
{
?>
<h2 class="nav-tab-wrapper">
<a href="#tab1" class="nav-tab">Tab #1</a>
<a href="#tab2" class="nav-tab nav-tab-active">Tab #2</a>
<a href="#tab3" class="nav-tab">Tab #3</a>
</h2>
<div id="tab1"><!--content tab1--></div>
<div id="tab2"><!--content tab2--></div>
<div id="tab3"><!--content tab3--></div>
<?php
}

我想要“user_funct()”创建带有这样样式 wordpress 的标签


http://postimg.org/image/h3nttjhof/


如何使用链接选项卡菜单创建不同的内容

谢谢

最佳答案

这里是你如何去做的;

首先,您需要创建一个根据当前所选选项卡创建结构的函数:

function page_tabs( $current = 'first' ) {
$tabs = array(
'first' => __( 'First tab', 'plugin-textdomain' ),
'second' => __( 'Second tab', 'plugin-textdomain' )
);
$html = '<h2 class="nav-tab-wrapper">';
foreach( $tabs as $tab => $name ){
$class = ( $tab == $current ) ? 'nav-tab-active' : '';
$html .= '<a class="nav-tab ' . $class . '" href="?page=ipl_dbx_import_export&tab=' . $tab . '">' . $name . '</a>';
}
$html .= '</h2>';
echo $html;
}

然后在回调函数中调用以显示将包含选项卡的页面,您需要像这样使用此函数:

<?php
// Code displayed before the tabs (outside)
// Tabs
$tab = ( ! empty( $_GET['tab'] ) ) ? esc_attr( $_GET['tab'] ) : 'first';
page_tabs( $tab );

if ( $tab == 'first' ) {
// add the code you want to be displayed in the first tab
}
else {
// add the code you want to be displayed in the second tab
}
// Code after the tabs (outside)
?>

然后你调用页面,你可以添加一个名为 tab 的 GET 值对应于你想要显示的选项卡,例如:

admin.php?page=my_plugin_page_slug&tab=second

关于php - 如何在管理页面wordpress中创建选项卡菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24378753/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com