PhpTips.im - Everything about php - Download CMS, find tips and tricks, code snippetz, classes and more and more...
Bookmark this page !
   

Articles

    Home » Articles » PHP Snippets
Browsing PHP Snippets RSS RSS

   Pages :   0     1     2     3     4     5     6     7     8     9     10     11     12     13     14     15     16     17     18     19     20     21     22     23     24     25     26     27     28     29     30     31     32     33     34     35     36     37     38     39     40     41     42     43     44     45     46     47     48     49     50     51     52     53     54     55     56     57     58     59     60     61     62     63     64     65     66     67     68     69     70     71     72     73     74     75     76     77     78     79     80     81     82     83     84     85     86     87     88     89     90     91     92     93  
orderMultiAssocArray
Published on : 11.05.2010 Category : PHP Snippets Viewed : 21 times.
[code] function orderMultiAssocArray($array=array(), $field='',...
Read More »

How to: Breadcrumb function for Wordpress
Published on : 11.05.2010 Category : PHP Snippets Viewed : 29 times.
[code] function the_breadcrumb() { if (!is_home()) { echo '<a href="'; echo get_option('home'); echo '">'; bloginfo('name'); ec...
Read More »

Adding Images to the RSS feed in K2 2.2
Published on : 11.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] Go to /components/com_k2/models/item.php line 368 and replace the Description section with this:  $item...
Read More »

Grab the first image from a post
Published on : 11.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] // functionfunction catch_that_image() { global $post, $posts; $first_img = ''; ob_start(); ob_end_clean(); $output = preg_mat...
Read More »

Conditional
Published on : 11.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] <?php /* If this is the Contact page */ if (is_page('Contact')) { ?> <p>My name is...
Read More »

Tweet your wordpress posts without a plugin
Published on : 11.05.2010 Category : PHP Snippets Viewed : 28 times.
[code] <? $twitter_username = "your_twitter_username";$twitter_password = "your_twitter_passwo...
Read More »

Random wordpress post
Published on : 11.05.2010 Category : PHP Snippets Viewed : 284 times.
[code] function random_post() { $ranpost = $wpdb->get_var("SELECT guid FROM $wpd...
Read More »

Limit your wordpress content
Published on : 11.05.2010 Category : PHP Snippets Viewed : 32 times.
[code] function split_content($words = 15) { $str = get_the_content(''...
Read More »

show total amount of wordpress comments
Published on : 11.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] function comments_count() { global $wpdb; $count = ...
Read More »

Fix missing $_SERVER[SCRIPT_URL]
Published on : 11.05.2010 Category : PHP Snippets Viewed : 49 times.
[code] /** * Tries to determine Servers' SCRIPT_URL, if it doesn't exist. * The missing superglobal $_SERVER array element will be fixed. *...
Read More »

 

 Members
Log In !
Email Address :

Password :


Change my passowrd !
Sign Up !
We have : 3 members.
Latest member : albans
 
 Last Posts
 
 Advertising
 
©PhpTips.im 2010
Powered by PikaCMS.
Quick Links :
Home | Browse all articles | Downloads | Terms of Use
RSS RSS 2.0 : Articles | Downloads ATOM : Articles | Downloads