我希望在侧边栏中显示我的选项卡(查看/编辑等),而不是在节点顶部,但仅在我查看自己的个人资料时(可能也在查看其他用户的个人资料时)。在我的 page.tpl.php 我有这个片段:
<?php if (!empty($tabs)): ?><div class="tabs-wrapper"><?php print $tabs; ?></div><?php endif; ?>
我想它应该是这样的,if (!empty($tabs) && !$user_profile_page)
但我不能让它工作。