Monthly archives: November 2009

Entries found: 2

WordPress Thesis Theme Head Element “Custom Function”

The reason you can’t find the custom function to add an element to the wordpress head area

<head>

</head>

is because that behavior is controlled by the Thesis Options web interface in wp-admin, not through the custom_functions.php hook.

Now stop looking for a hook and go to your wp-admin.

Use MySQL Update to Change All Values by a Percentage

update products set products_price = products_price + (products_price * .35)

2013 © Web Programming Answers