wp_register

函数


wp_register ( $before = '
  • ', $after = '
  • ', $echo = true )

    参数
    • (string)
      $before
      Text to output before the link. Default `
    • `.
      Required:
      Default:
    • (string)
      $after
      Text to output after the link. Default `
    • `.

      Required:
      Default:
    • (bool)
      $echo
      Default to echo and not return the link.
      Required:
      Default: true
    返回值
    • (void|string) Void if `$echo` argument is true, registration or admin link if `$echo` is false.
    定义位置
    • wp-includes/general-template.php
      , line 682
    引入
    1.5.0
    弃用

    Displays the Registration or Admin link.

    Display a link which allows the user to navigate to the registration page if
    not logged in and registration is enabled or to the dashboard if logged in.

    function wp_register( $before = '
  • ‘, $after = ‘
  • ‘, $echo = true ) {
    if ( ! is_user_logged_in() ) {
    if ( get_option( ‘users_can_register’ ) ) {
    $link = $before . ” . __( ‘Register’ ) . ” . $after;
    } else {
    $link = ”;
    }
    } elseif ( current_user_can( ‘read’ ) ) {
    $link = $before . ” . __( ‘Site Admin’ ) . ” . $after;
    } else {
    $link = ”;
    }

    /**
    * Filters the HTML link to the Registration or Admin page.
    *
    * Users are sent to the admin page if logged-in, or the registration page
    * if enabled and logged-out.
    *
    * @since 1.5.0
    *
    * @param string $link The HTML code for the link to the Registration or Admin page.
    */
    $link = apply_filters( ‘register’, $link );

    if ( $echo ) {
    echo $link;
    } else {
    return $link;
    }
    }

    声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。