Skip to content
View gugaalves's full-sized avatar

Organizations

@wpbrasil

Block or report gugaalves

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. jesselawson/easy-author-image jesselawson/easy-author-image Public

    The Easy Author Image Plugin for WordPress.

    PHP 7

  2. WordPress - Customizing Login, Regis... WordPress - Customizing Login, Register and Lost Password pages
    1
    /*
    2
    *
    3
    * This CSS template will customize WordPress.org login pages:
    4
    * 
    5
    * Login page:           /wp-login.php
  3. Vendo qual arquivo do tema está roda... Vendo qual arquivo do tema está rodando!
    1
    
                  
    2
    add_action('admin_bar_menu', 'show_template');
    3
    function show_template() { 
    4
    global $template;
    5
    print_r($template);
  4. Redirecionar usuários Redirecionar usuários
    1
    //Redirecionar o usuário após o login
    2
    function redirect_user_login() {
    3
    	if (!current_user_can('manage_woocommerce')) {
    4
    	  $url = home_url(); //redirecionar pra home
    5
    	  return $url
  5. send_mail_post_pending.php send_mail_post_pending.php
    1
    <?php
    2
    
                  
    3
    /* 
    4
      Enviar e-mail para o administrador se houver posts para revisão
    5