Category archives: PHP

 

 

0

WP insert, post PHP function and Custom Fields

If you read the documentation for wp_insert_post  it returns the post ID of the post you just created. If you combine that with the following function update_post_meta (a custom function I acquired from this site and adapted a bit)

You’ll get the following:

Read more

 

 

 

0

Biblioteca PHP para realizar pruebas a nuestros diseños

Dummy es una biblioteca PHP para asistirnos a la hora de probar nuestros diseños, lo que hace es generar textos aleatorios que posteriormente insertaremos en las secciones que queremos analizar. Este pequeño, pero no por eso menos útil proyecto, no solo sirve para completar secciones, también cuenta con varias opciones para ajustar perfectamente las características […]

Read more

 

0

How To Use PHP To Get Visitors Browser

With the raise of popularity in using mobile devices to access websites, web designers need to start designing their websites so it can be used correctly on a mobile device. There are several ways you can do this, you can either use media queries, mobile apps or separate mobile sites. CSS Media Queries If you […]

This article was original wrote on How To Use PHP To Get Visitors Browser

Read more

 

2

Expresiones regulares extraer y obtener una imagen de un texto en php

Cuando trabajamos con imagenes dentro de un texto, ya pueda ser un editor de texto como el TinyMCE o el propio editor de WordPress y Joomla. Muchas veces necesitamos extraer las imagenes que estan en esos textos. Esto se puede conseguir con expresiones regulares y con simple for recorrer todas las imagenes que contiene el […]

Read more

 

0

Include WordPress Template Files In Your Theme

It’s common practice in PHP development to use template files to include in your web pages. WordPress comes with in-built functions to include certain files in your theme: get_header() – Includes the header.php file get_sidebar() – Includes the sidebar.php file get_footer() – Includes the footer.php file If you want to include custom files in your […]

Read more

 

 

 

1

DataMapper: Object Relational Mapper en CodeIgniter

¿Qué vamos a necesitar? 1.- CodeIgniter (Este tutorial trata sobre la versión 1.7.3) 2.- DataMapper (1.8.0 es la más actual, en el momento de escribir este tutorial) La instalación de CodeIgniter es muy sencilla, como ya vimos en el anterior tutorial. Para añadir DataMapper al proyecto, simplemente tenemos que copiar el contenido del directorio «application» dentro del directorio «system/application» de […]

Read more