Skip to main content

Home/ Wordpress/ Group items matching "hack" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
Luciano Ferrer

Redirección de usuarios a páginas personalizadas al registrarse en WordPress - 0 views

  •  
    "// --------------------------------- // Redirección de registro (login) // según el tipo (rol) de usuario. // --------------------------------- function mytheme_custom_login_redirect($redirect_to, $request, $user) { global $user; if ( isset( $user->roles ) && is_array( $user->roles ) ) { // Si es un usuario administrador // le redirigimos a la página de gestión de plugins if ( in_array( 'administrator', $user->roles ) ) return home_url( '/wp-admin/plugins.php' ); // Si es un usuario con permisos de editor // le enviamos a la página de gestión de entradas. elseif ( in_array( 'editor', $user->roles ) ) return home_url( '/wp-admin/edit.php' ); // Y a todos los demás usuarios // les redirigimos a la página de inicio de la web. else return home_url(); } else { return $redirect_to; } } add_filter( 'login_redirect', 'mytheme_custom_login_redirect', 10, 3 );"
Luciano Ferrer

How to Add Items to the WordPress Toolbar - WPMU DEV - 1 views

  •  
    "In this article, we'll look at how you can add your own custom links to the bar with code so you can quickly access parts of the front and backend of your site with ease. This will be a simple enough task, all we need is one function: add_node(). I recommend taking a look at what the Codex has to say about it, I'll show you the basics using a couple of examples."
Vernon Fowler

WP-Snippets | WordPress Hacks, Snippets and Tips - 15 views

  •  
    Excellent source of help for WordPress development. Snippets are a great way to get information on how to complete simple and even complex tasks without having to reinvent the wheel. Very handy tool to have around
  •  
    I'm sure some of you have seen this before, but It's one of my favorite resources.
Rika Y

Popurls Clone using Wordpress » Ericulous - 0 views

  • Javascript BoxOver Digg Style Videos Document Text Sizer Style Sheet Switcher Plugins: Adsense 0.1 Exec-PHP 3.2 flickrRSS 3.1 WeatherIcon 2.99.84
david degrelle

Optimiser les performances PHP et WordPress chez OVH en 4 lignes dans le htaccess - 0 views

  •  
    Pour cela, il suffit juste de changer 4 paramètres de PHP et pour y parvenir nous allons créé/édité le fichier .htaccess à la racine de votre FTP. (dans le dossier WWW) Et on va y insérer les lignes: SetEnv REGISTER_GLOBALS 0 SetEnv ZEND_OPTIMIZER 1 SetEnv MAGIC_QUOTES 0 SetEnv PHP_VER 5
Maggie Wolfe Riley

WordPress Debug Theme - Yoast - Tweaking Websites - 3 views

  •  
    Great debugging tool!
Anna Johansson

WPCandy - WordPress Themes, Plugins, Tips, and Tricks - 6 views

  •  
    quote from site: "WPCandy was created on October 1st, 2007, as a blog on everything about WordPress, from the latest themes and plugins to tutorials and tips. Already on it's 3rd redesign, WPCandy is one of the top sites about WordPress and still kickin' ass."
Anna Johansson

Overriding WordPress Functions | venutip.com - 0 views

« First ‹ Previous 41 - 60 of 65 Next ›
Showing 20 items per page