Posts in wordpress

Programador PHP Argentina

marzo 23rd, 2013 Posted by freelance, ios, magento, objective-c, php, prestashop, wordpress 0 thoughts on “Programador PHP Argentina”

Hola.

Soy un programador freelance de Argentina que se dedica al desarrollo de aplicaciones web.

Desde hace más de 7 años que me dedico al desarrollo de aplicaciones PHP. Empecé con PHP “puro y duro” por así decirlo.

Luego estuve viendo los diferentes frameworks MVP del mercado de los cuales los que más me gustaron son Zend y Symphony.

Y finalmente comencé a trabajar con los diferentes CMS que hay para PHP para no “reinventar la rueda” 🙂

Trabajé con WordPress y Drupal a nivel CMS. Y en cuanto a tiendas online con Magento y Prestashop.

Ahora mismo, además de dedicarme al desarrollo de aplicaciones web me encuentro trabajando en el desarrollo de aplicaciones móviles. Principalmente me dedico a iOS con Objective, pero también (dependiendo del proyecto) trabajo con Android (desde 2.2 en adelante) y con jQuery Mobile (para el caso de web applications móviles).

Si tenés alguna duda o querés un presupuesto contactame acá que hoy mismo me pongo en contacto con vos.

SQL to query categories with no childrens in WordPress

abril 2nd, 2012 Posted by mysql, php, wordpress 0 thoughts on “SQL to query categories with no childrens in WordPress”
SELECT wp_terms.name, wp_terms.term_id
FROM wp_terms
INNER JOIN wp_term_taxonomy ON wp_terms.term_id = wp_term_taxonomy.term_id
WHERE wp_term_taxonomy.taxonomy = “category”
AND wp_terms.term_id NOT
IN (
SELECT DISTINCT parent
FROM `wp_term_taxonomy`
WHERE parent <>0
)
LIMIT 0 , 30

WordPress | The uploaded file could not be moved to…

diciembre 28th, 2011 Posted by wordpress 0 thoughts on “WordPress | The uploaded file could not be moved to…”

Use your ftp client and:

  • go to /wp-content and chmod 777
  • if it’s necesary create the directory /wp-content/uploads
  • go to /wp-content/uploads and chmod 777
Now it have to be fixed 🙂

is_home(), is_front_page() not working

diciembre 26th, 2011 Posted by wordpress 0 thoughts on “is_home(), is_front_page() not working”

If you are facing troubles trying to use this functions (is_home(), is_front_page()) you have to ‘clean the query’ using the following function: wp_reset_query(); just before calling the function that you need.

Upload a file to an options page WP

agosto 10th, 2011 Posted by wordpress 0 thoughts on “Upload a file to an options page WP”

http://www.wptavern.com/forum/themes-templates/1346-creating-upload-function-options-page.html#post13306

Cómo listar las categorías de wordpress mediante un query de mysql.

mayo 24th, 2011 Posted by mysql, wordpress 0 thoughts on “Cómo listar las categorías de wordpress mediante un query de mysql.”
SELECT DISTINCT ID, post_title, post_name, guid, post_date, post_content
FROM wp_posts AS p
INNER JOIN wp_term_relationships AS tr ON (
p.ID = tr.object_id

)
INNER JOIN wp_term_taxonomy AS tt ON (
tr.term_taxonomy_id = tt.term_taxonomy_id
AND taxonomy = 'category' AND tt.term_id
IN ( 16 )
)
ORDER BY id DESC
Cambiar el 16 por el id de la categoria a buscar. 

Copyright © 2018 programadorfreelanceargentina.com

Programador Freelance Argentina