Published: September 2nd, 2010 by jorge
Los niños muy pequeños gustan mucho de cuentos y relatos y los piden, y pueden entender cuestiones complejas expuestas como cuentos y fábulas, cuando su capacidad para captar conceptos generales, paradigmas, es casi inexistente. Esta capacidad simbólica o narrativa es la que aporta un sentido del mundo (una realidad concreta en la forma imaginativa de símbolo y relato) cuando el pensamiento abstracto no puede proporcionar ninguno. El niño sigue la Biblia antes de seguir a Euclides.
Oliver Sacks
Published: July 29th, 2010 by jorge
This function is used to get the_permalink() of a certain page using it’s ID (outside the loop). To use it within a theme, just:
function getPageLink($pageId){
if(!is_numeric($pageId)) {
return;
}
global $wpdb;
$sql_query = ‘SELECT DISTINCT * FROM ‘ . $wpdb->posts . ‘ WHERE ‘ . $wpdb->posts . ‘.ID=’ . $pageId;
$posts = $wpdb->get_results($sql_query);
if(!empty($posts)) {
foreach($posts as $post) {
return nl2br($post->guid);
}
}
}
Published: July 29th, 2010 by jorge
This function is used to get the title(); of a certain page using it’s ID (outside the loop). To use it within a theme, just:
<?php getPageTitle(ID); ?>
function getPageTitle($pageId){
if(!is_numeric($pageId)) {
return;
}
global $wpdb;
$sql_query = ‘SELECT DISTINCT * FROM ‘ . $wpdb->posts . ‘ WHERE ‘ . $wpdb->posts . ‘.ID=’ . $pageId;
$posts = $wpdb->get_results($sql_query);
if(!empty($posts)) {
foreach($posts as $post) {
return nl2br($post->post_title);
}
}
}
Published: July 29th, 2010 by jorge
This function is used to construct breadcrumbs of pages, posts and archives within Wordpress. Put this on functions.php inside yout theme and call anywhere you need (single.php, page.php) using:
Read on »
Published: November 21st, 2009 by jorge
October is a catastrophic month for me (financially): I must pay the server and a lot of my domains… and 2 months before Xmas I have to pay a sustancial ammount on my creditcard… anyway, this year I’ve added a new domain: jorgeepunan.info. It was only US$1 and I wanted for long time to do a website on my own and for me as a personal card… so this webcard represents the way that anyone can contacts me for anything, and it shows what I’ve done as a professional.
.
I’m always open for feedback, and hope you enjoy the experience.
http://www.jorgeepunan.info

Published: August 20th, 2009 by jorge
Cuando estoy trabajando en un problema nunca pienso sobre su belleza, únicamente pienso en cómo resolverlo. Pero cuando he terminado, si la solución no es bella, sé que está equivocada.
Richard Buckminster Fuller
0 Comments