This will convert dates from MM-DD-YYYY to YYYY-MM-DD (iso format)[code]<?function convertDate($date) { $date =... Read More »
Add a custom post type of news [code] <?php function post_type_news() { register_post_type( 'New',... Read More »
[code] < ? $batchconnection = new mysqli($dbHost, $dbUser, $dbPass, ... Read More »
[code] $kz = array(); if (($handle ... Read More »
Count the number of comments in wordpress blog [code] <?php /* Counts the posts, comments and categories on your blog */ $numposts = $wpdb->get_var... Read More »
Add read more link for wordpress [code] function new_excerpt_more($post) { return '<a class="more" href="'. get_permalink(... Read More »
Change the excerpt value in functions.php[code]... Read More »
[code] // HTACCESS FILE<IfModule mod_rewrite.c>RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule .* ... Read More »
[code] // get and return images for empty imagesfunction get_image($url){ $image ... Read More »
[code] //get full path including filename of current file$fileTarget = __FILE__;// get absolute path$path ... Read More »