-2

我需要将此代码放在functions.php中的一个函数中

我该怎么做呢?

编辑:这是关于我收到的关于标题问题的答案。

“不在函数内。所以文件一加载就被调用。这意味着所有输出都会立即发送到屏幕上。这东西应该在一个函数内,然后在正确的时间调用(就像其他位一样) 。”

问题是,我不知道如何将此代码放入函数中。

    add_shortcode("snap", "wpr_snap");
$user_ej = wp_get_current_user();
if ($user_ej->roles[0] == 'contributor')
{ ?>
  <style type="text/css">
    #menu-dashboard, #toplevel_page_wpcf7, #menu-tools 
    {
        display:none;
    }
</style>
<?php }
add_filter(  'gettext',  'change_post_to_portfolio'  );
add_filter(  'ngettext',  'change_post_to_portfolio'  );
4

1 回答 1

0

根据您的代码内容,您可能应该像这样重写它:

    add_shortcode("snap", "wpr_snap");
function add_extra_css() {
$user_ej = wp_get_current_user();
if ($user_ej->roles[0] == 'contributor')
{ ?>
  <style type="text/css">
    #menu-dashboard, #toplevel_page_wpcf7, #menu-tools 
    {
        display:none;
    }
</style>
<?php }
}
}
add_action( 'wp_head', 'add_extra_css' );
add_filter(  'gettext',  'change_post_to_portfolio'  );
add_filter(  'ngettext',  'change_post_to_portfolio'  );
于 2012-10-23T11:06:49.000 回答