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  
Wordpress - Automatically Resize Images
Published on : 13.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] function imageresizer( $atts, $content = null ) { return '<img src="/timthum...
Read More »

Wordpress - Customize the Logo of Your WordPress Login Page
Published on : 13.05.2010 Category : PHP Snippets Viewed : 27 times.
[code] function my_custom_login_logo() { echo '<style type="text/css"> h1 a { background-i...
Read More »

Wordpress - Detecting Mobile Devices Accessing Your Site
Published on : 13.05.2010 Category : PHP Snippets Viewed : 25 times.
[code] include('mobile_device_detect.php');$mobile = mobile_device_detect(); ...
Read More »

Wordpress - Displaying Your Tags in a Dropdown Menu
Published on : 13.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] <?phpfunction dropdown_tag_cloud( $args = '' ) { $defaults =...
Read More »

Wordpress - Custom “Read More” Links for Your Posts
Published on : 13.05.2010 Category : PHP Snippets Viewed : 27 times.
[code] // Edit index.php, replace the_content("Read more"); with the following code<?php $custommore = get_post_meta($post->ID, 'cust...
Read More »

Wordpress - Scheduling Posts for RSS
Published on : 13.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] function publish_later_on_feed($where) { global $wpdb; ...
Read More »

Wordpress - Display the Most Commented Posts of 2009
Published on : 13.05.2010 Category : PHP Snippets Viewed : 22 times.
[code] <ul><?php$result = $wpdb->get_results("SELECT comment_count,ID,post_title, post_date FROM $wpdb->po...
Read More »

Wordpress, Disable the “please upgrade now” message
Published on : 13.05.2010 Category : PHP Snippets Viewed : 96 times.
[code] if ( !current_user_can( 'edit_users' ) ) { add_action( 'init', ...
Read More »

Wordpress, Replace the default WordPress “W” logo in the dashboard
Published on : 13.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] //hook the administrative header outputadd_action('admin_head', 'my_custom_logo'); funct...
Read More »

PHP: Finding information on a file
Published on : 13.05.2010 Category : PHP Snippets Viewed : 26 times.
[code] $file_info = pathinfo( __FILE__ );echo $file_info[...
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