Categories
Archives
Tag Archives: Code
Auto Generated Content Using Search Page and Bing
Open theme search.php and add the following code before get_header(); line: <?php define(‘BING_API_KEY’, ”); function pete_curl_get($url, $params){$post_params = array(); foreach ($params as $key => &$val) { if (is_array($val)) $val = implode(‘,’, $val); $post_params[] = $key.’=’.urlencode($val); } $post_string = implode(‘&’, $post_params); …Read more.
Get Value from Class
<?php class myclass { function myfunction() { /** your code here **/ } } $object = new myfunction(); echo $object->name(); ?>
HTML Background Image at Bottom
Code snippet: The image always remains at the bottom of the page. No matter what scrolling or resizing you do. background:#FFFFFF url(backgroundpic.jpg) repeat-x fixed center bottom;