Skip to main content

Home/ Wordpress/ Contents contributed and discussions participated by Luciano Ferrer

Contents contributed and discussions participated by Luciano Ferrer

Luciano Ferrer

WordPress › All in One SEO Pack « WordPress Plugins - 0 views

  •  
    "WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines. "
Luciano Ferrer

WordPress › Google Analytics for WordPress « WordPress Plugins - 1 views

  •  
    "Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews. "
Luciano Ferrer

WordPress › Share and Follow « WordPress Plugins - 3 views

  •  
    "Add Share Icons, Follow Links, Facebook Like, Twitter Tweet and other buttons in the way you want. Simple & adaptable social networking. "
Luciano Ferrer

6 Best Wordpress Resume / CV Templates - 5 views

  •  
    "Online WordPress resume / CV is helpful to strengthen your online identity and personal brand. Finding a good wordpress resume template or wordpress CV Template that actually works is not an easy task, so in this post we've gathered 6 premium wordpress resume / CV templates. Enjoy! My Resume WordPress Theme Get Hired - CV / Resume WordPress theme Jay WordPress Theme Personal vCard WordPress Theme Circlus - Creative Personal Portfolio Vue - Portfolio & CV WordPress Theme"
Luciano Ferrer

WordPress › Get Custom Field Values « WordPress Plugins - 3 views

  •  
    "Use widgets, shortcodes, and/or template tags to easily retrieve and display custom field values for posts or pages. Use widgets, shortcodes, and/or template tags to easily retrieve and display custom field values for posts or pages. The power of custom fields gives this plugin the potential to be dozens of plugins all rolled into one."
Luciano Ferrer

WordPress › Fast Secure Contact Form « WordPress Plugins - 4 views

  •  
    "A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with. This plugin allows a webmaster to easily create and add contact forms to WordPress. The contact form will let the user send emails to a site's admin, and also send a meeting request to talk over phone or video. An administration panel is present, where the webmaster can create and preview unlimited forms."
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."
Luciano Ferrer

24 Stable WordPress Plugins For A Better Publishing Experience - 7 views

  •  
    "WordPress, as most of us experience, is so strong and flexible. It is hard to think of a website that can't be brought to life with it. Besides this power, it is still simple which is great. This simplicity sometimes ends up in some non-existing features which would actually be nice if they were available when needed -seems like the definition of plugins: )-. As a designer/developer who spend lots of time with WordPress, I want to share a list of plugins which I use for almost every WordPress setup and they end up saving lots of time."
Luciano Ferrer

WordPress › Mute Screamer « WordPress Plugins - 3 views

  •  
    "Mute Screamer uses PHPIDS to detect attacks on your WordPress site and react in a way that you choose."
Luciano Ferrer

WordPress › Codestyling Localization « WordPress Plugins - 0 views

  •  
    "You can manage and edit all gettext translation files (*.po/*.mo) directly out of WordPress Admin Center without any need of an external editor. "
Luciano Ferrer

6 Ways to Customize WordPress Post Order * Perishable Press - 12 views

  •  
    "Recently, reader Luke Knowles asked how to customize the sort order of his posts in WordPress. Looking into a solution to this question proved quite enlightening. Within moments I was able to discern 4 methods for modifying post order, and then several days later I discovered 2 additional custom sorting techniques. After updating the reply to Luke's comment, it seemed like some good information that other WordPressers may find useful. So, here are six ways to customize the sort order of posts in WordPress."
Luciano Ferrer

8 Best Coupon sites to get Cheapest Wordpress Products - 3 views

  •  
    "To find the best and working coupon to buy a product is time consuming job, many sites won't provide you the active coupons. To make your coupon search easier I listed few sites from where you can get discount codes for all major wordpress related products."
Luciano Ferrer

10 HTML5-Ready Blank, Bare-Bones and Naked Themes for Wordpress - 4 views

  •  
    "If you are a WordPress developer and are looking for an easy way of rapidly building HTML5 ready themes without having to re-write the same WordPress code over and over, then this post is for you. Blank, bare-bones, naked, themes, or whatever you prefer to call them, are a life-saver for developers who have to build WordPress themes on a regular basis. They are basically stripped-back themes that have had all of their surplus non-essential code stripped away, leaving only the bare necessities and a fantastic starting point for any new project."
Luciano Ferrer

Roots WordPress Theme | Rapidly create sites with HTML5 Boilerplate & Bootstrap from Tw... - 13 views

  •  
    "Roots is a starting WordPress theme based on HTML5 Boilerplate & Bootstrap from Twitter."
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."
Luciano Ferrer

Asegurando WordPress con .htaccess | Ayuda WordPress - 1 views

  •  
    Recopilación de artículos y códigos útiles para el .htaccess
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

Distinto color según el estado de las entradas | Ayuda WordPress - 1 views

  •  
    "Un modo genial, además de chulo, de distinguir las entradas por su estado sería que se mostraran en distinto color en la ventana del listado de entradas ¿no?. Pues conseguirlo es muy sencillo, solo tienes que añadir este código al fichero functions.php de tu tema activo y ya lo tienes function posts_status_color() { ?> .status-draft { background: #FCE3F2 !important; } .status-pending { background: #87C5D6 !important; } .status-publish { /* por defecto */ } .status-future { background: #C6EBF5 !important; } .status-private { background: #F2D46F; }
Luciano Ferrer

WordPress › Disqus Comment System « WordPress Plugins - 3 views

  •  
    "The Disqus comment system replaces your WordPress comment system with your comments hosted and powered by Disqus. Disqus, pronounced "discuss", is a service and tool for web comments and discussions. Disqus makes commenting easier and more interactive, while connecting websites and commenters across a thriving discussion community. The Disqus for WordPress plugin seamlessly integrates using the Disqus API and by syncing with WordPress comments."
Luciano Ferrer

WordPress › Google XML Sitemaps « WordPress Plugins - 0 views

  •  
    "This plugin will generate a special XML sitemap which will help search engines to better index your blog. This plugin will generate a special XML sitemap which will help search engines like Google, Bing, Yahoo and Ask.com to better index your blog. With such a sitemap, it's much easier for the crawlers to see the complete structure of your site and retrieve it more efficiently. The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content."
« First ‹ Previous 261 - 280 of 314 Next › Last »
Showing 20 items per page