Category archives: widget

 

 

0

Create A Widget Area For A Certain Category

In WordPress you can create a sidebar widget area where the admin user can dynamically choose which widgets are displayed on the website. This makes it very easy for the user to add, edit or delete widgets with a nice drag and drop interface. The problem with most WordPress themes is that developers only give […]

This article was originally published on Create A Widget Area For A Certain Category.

Read more

 

0

Twitter Stream WordPress Widget

In a previous article last year I wrote a tutorial about how to Create WordPress Widget To Display Twitter Updates, since then I have learnt a lot more about WordPress development. For this reason I have decided to revisit this widget and make some changes. When looking back at the code I noticed it was […]

This article was originally published on Twitter Stream WordPress Widget.

Read more

 

0

Insertar Google Maps en WordPress

No se cómo se me ha podido haber pasado algo tan básico como insertar mapas de Google Maps en WordPress siendo, además, un elemento fundamental en casi cualquier web corporativa que se precie porque ¿quien no ha puesto en la web de su empresa un mapa para mostrar al visitante donde está su “casa“?. Así que manos a la obra, vamos a ver cómo insertar Google Maps en WordPress de la manera más sencilla posible …  … Insertar Google Maps con código … (este método solo sirve para WordPress.org, alojado en tu servidor) Para este método lo primero que debes … Sigue leyendo que hay más

Read more

 

 

 

0

Escritorio de WordPress como CMS

Hay algo que a muchos no les gusta de WordPress: el Escritorio. Y no es que no sea intuitivo, ni útil, pero el hecho de que las acciones más habituales no estén en forma de iconos sino como menús, en realidad submenús de “+ Nuevo” o similares, les parece una pérdida de tiempo, y si te soy sincero yo opino igual. Pues bien, si eres de los ahorrativos en clics, y te gustaría tener nada más en el escritorio una lista de iconos que, a un clic, te lleven a lo que haces habitualmente en WordPress, CMS Dashboard es lo … Sigue leyendo que hay más

Read more

 

0

WordPress Widget Boilerplate

Here is a WordPress snippet to create your own WordPress Widgets. A Widget is a piece of PHP Code which will run when it is placed inside a Sidebar. A good example of a widget is data displayed in the sidebar of a blog. Like this blog I use widgets to display the Google badge, Twitter Feed and Facebook like box. Having these as Widgets mean I can place them in multiple places of the WordPress theme directly in the WordPress dashboard. You can create a WordPress widget to do anything you want, the easiest way to create a WordPress widget is to inherit the WP_Widget class. This way you can use the inbuilt functions to update the widget, display the widget and create an admin page for the widget. Below is the boilerplate of a WordPress widget, when you create a new widget just copy and paste the below code as a starting point […]

Read more