Skip to main content

Home/ Wordpress/ Group items tagged functions

Rss Feed Group items tagged

Vernon Fowler

Function Reference/the date « WordPress Codex - 0 views

  • <?php the_date('Y-m-d'
    • Vernon Fowler
       
      The Y-m-d format is useful for HTML5 datetime attribute in a time element, i.e. my time is whatever here  See http://html5doctor.com/the-time-element/ for further details 
david clay

Hire Best WordPress Developer for Custom Web Development - 0 views

  •  
    In present Scenario website plays the functional role to obtain visibility in the world. Everyone is challenging for that originality of the website on the planet. Because of this reason, dependence on web designer and developer has elevated daily. WordPress Developer is using various design Techniques and tool to build up unique Website.
Luciano Ferrer

Elimina los RSS feeds completamente en WordPress | Ayuda WordPress - 1 views

  •  
    "Puede haber situaciones en que no quieras ofrecer, para algún sitio en particular, un RSS feed a tus lectores. function disable_all_feeds() { wp_die( __('Lo siento, nuestro contenido no está disponible mediante RSS. Por favor, visita la web para leerla') ); } add_action('do_feed', 'disable_all_feeds', 1); add_action('do_feed_rdf', 'disable_all_feeds', 1); add_action('do_feed_rss', 'disable_all_feeds', 1); add_action('do_feed_rss2', 'disable_all_feeds', 1); add_action('do_feed_atom', 'disable_all_feeds', 1); "
Luciano Ferrer

Contenido exclusivo para tus lectores por RSS | Ayuda WordPress - 1 views

  •  
    "function solofeed_shortcode( $atts, $content = null) { if (!is_feed()) return ""; return $content; } add_shortcode('solofeed', 'solofeed_shortcode'); Con esto hemos creado un shortcode llamado 'solofeed' que, al usarlo en cualquier entrada determinará que parte del contenido no será visible en nuestro sitio pero si para los lectores del feed RSS."
Vernon Fowler

Function Reference/wp is mobile « WordPress Codex - 0 views

  • This Conditional Tag checks if the user is visiting using a mobile device. This is a boolean function, meaning it returns either TRUE or FALSE.
Luciano Ferrer

WordPress › Membership « WordPress Plugins - 4 views

  •  
    "Membership transforms your WordPress website into a fully functional membership site. Provide access to downloads, online content, videos, forums, support and more through flexible membership levels and options. Simple to use, flexible - this plugin will meet all of your membership site needs. Want to create a site like GigaOm, Izzy Video, PSD Tuts? Now you can do it, easy!"
Luciano Ferrer

thomasclausen/wp-add-nextpage-button · GitHub - 1 views

  •  
    "Simple functionality plugin that adds the "Next page" button to TinyMCE in WordPress."
Luciano Ferrer

34 Free WordPress Theme Frameworks and Starter Themes (With A Comparison Chart) - 9 views

  •  
    "Yes, WordPress theme development. That is an easy process for experienced hands who knows the capabilities of the application and familiar with its functions and "not too hard" for others. To simplify developing new themes, there are awesome WordPress theme frameworks and starter themes that you can use as a base for skipping the repetitive steps and begin with an optimized playground. Here are the 34 free and good-quality ones that will save your time from searching them. And, in the bottom, you can find a comparison table for these WordPress theme frameworks."
Vernon Fowler

Function Reference/is plugin active « WordPress Codex - 0 views

  •  
    include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
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

WordPress › Subscribe To Comments Reloaded « WordPress Plugins - 0 views

  •  
    "Subscribe to Comments Reloaded allows commenters to sign up for e-mail notifications of subsequent replies. Subscribe to Comments Reloaded is a robust plugin that enables commenters to sign up for e-mail notification of subsequent entries. The plugin includes a full-featured subscription manager that your commenters can use to unsubscribe to certain posts or suspend all notifications. It solves most of the issues that affect Mark Jaquith's version, using the latest WordPress features and functionality. Plus, allows administrators to enable a double opt-in mechanism, requiring users to confirm their subscription clicking on a link they will receive via email."
Vernon Fowler

Function Reference/add theme support « WordPress Codex - 0 views

  • HTML5 This feature allows the use of HTML5 markup for the comment forms, search forms and comment lists. add_theme_support( 'html5', array( 'comment-list', 'comment-form', 'search-form' ) );
Michael Sturgeon

Design a Stylized Custom WordPress Login Screen - SitePoint - 5 views

  •  
    "In this article, I'll show you in a few short steps how to get started with modifying the login screen so that users experience a customized, branded look and feel. I went over the top with this design just to show how dramatically the login form can be stylized using a simple mod to the functions.php file and some CSS."
anonymous

Working With WordPress Shortcodes | Pro Blog Design - 1 views

  •  
    WordPress shortcodes are used frequently in plugins and themes as a way to achieve extra functionality, without the need to modify template files. You just type the shortcode word right into your post.
anonymous

Top 10 WordPress Plugins to Increase Proficiency of your Blog - 2 views

  •  
    Plugins are great tools, used to improve the functioning of WordPress blogs by incorporating a wide range of useful features. These are usually pieces of code, created specifically to achieve some purpose.
anonymous

Gateway To Success - WordPress Magento Integration - 1 views

  •  
    WordPress is an open source platform for blogging and CMS based on PHP and MySQL, while Magento is also an open source platform offering services for building robust e-commerce websites. Integrating both can offer an effective outcome that can change the overall functioning of the e-commerce websites.
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."
Luciano Ferrer

WordPress › Yoast Comment Hacks « WordPress Plugins - 0 views

  •  
    "Make comments management easier by applying some of the simple hacks the Yoast team uses. Make comments management easier by applying some of the simple hacks the Yoast team uses. This plugin adds some small hacks around core WordPress comments to make them more bearable: Cleaner comment notification emails. The option to disallow comments below a certain length. The option to redirect first time commenters to a thank you page. An input field on the comment edit screen to change the comment parent ID. Links in the admin comments section to email individual commenters. A button in the WP toolbar to email all the commenters on a post. See the screenshots to get an even better idea of the plugins functionality."
Luciano Ferrer

How To Style Your Posts Based on Category, Tag or Custom Taxonomy in WordPress - Theme.fm - 0 views

  •  
    "How To Style Your Posts Based on Category, Tag or Custom Taxonomy in WordPress Style Posts by Taxonomy We heard this question many times and it's not as simple as it sounds, so we're dedicating a whole blog post to the solution. Today we'll talk about child themes, taxonomy (categories, tags and custom taxonomy), the post_class function, it's filter friend and their correct usage in WordPress themes. As simple as it sounds, adding the appropriate CSS rules to your theme stylesheet doesn't always work unless you're using default themes or very well written ones. Then again, even if it does, you might see it broken during the next update to the theme you're using, which brings us to child themes."
« First ‹ Previous 61 - 80 of 158 Next › Last »
Showing 20 items per page