If you use the standard WorPress distribution, then after the excerpt you see something like this: [...]
There is no link inside the … and there is no “more” word.
I want to change [...] into a clickable [... read more], which will lead to the actual post.
In the /wp-includes/formatting.php file, search for [...] (should be around [... read more]
December 9th, 2008 | Posted in Level 5 : Modify the code | No Comments
This is a FREE, great looking, awesome designed WordPress PlugIn, that will turn your WordPress site in a membership one in no time.
http://www.memberwing.com/
Do you want to show your gratitude to the author? Please use this link:
http://skullbit.com/donate/
December 2nd, 2008 | Posted in Level 4 : Enhance the behavior (plugins) | No Comments
Step 1: Login to WordPress, as an administrator, using any WRONG password
What script from the WordPress folders checks if you are using the right password for the user “admin”? Let’s find out. Let’s try to login with the wrong password, for instance with the password “ak45mjg385v3543knj6y23″. The login page will display the error message “Incorrect [... read more]
August 29th, 2008 | Posted in Level 5 : Modify the code | No Comments
Go to dashboard -> Settings -> Privacy -> Blog Visibility
Check the “I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers” option.
” I would like to block search engines, but allow normal visitors.”
This option is first set when you install WordPress.
August 28th, 2008 | Posted in Level 2 : Configure WordPress | No Comments
Go to dashboard -> Settings -> Privacy -> Blog Visibility
Check the “I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers” option.
This option is first set when you install WordPress.
August 28th, 2008 | Posted in Level 2 : Configure WordPress | No Comments
Edit the file called “YourWordPressFolder/wp-admin/includes/post.php”
Look for the code below (should start around line 529)
function wp_edit_attachments_query( $q = false ) {
global $wpdb;
if ( false === $q )
$q = $_GET;
$q['m'] = (int) $q['m'];
$q['cat'] = (int) $q['cat'];
$q['post_type'] = ‘attachment’;
$q['post_status'] = ‘any’;
$q['posts_per_page'] = 15;
Change $q['posts_per_page'] to whatever you wish.
The default value for $q['posts_per_page'] is 15.
August 28th, 2008 | Posted in Level 5 : Modify the code | No Comments
Edit the file called “YourWordPressFolder/wp-admin/includes/post.php”
Look for the code below (should start around line 517) wp(”post_type=post&what_to_show=posts$post_status_q&posts_per_page=15
&order=$order&orderby=$orderby”);
Change $posts_per_page to whatever you wish.
The default value for $posts_per_page is 15.
August 28th, 2008 | Posted in Level 5 : Modify the code | No Comments
Edit the file called “YourWordPressFolder/wp-admin/pages.php”
Look for the code below (should start around line 122)
$pagenum = absint( $_GET['pagenum'] );
if ( empty($pagenum) )
$pagenum = 1;
if( !$per_page || $per_page < 0 )
$per_page = 20;
Change $per_page from the last row to whatever you wish.
The default value for $per_page is 20.
August 28th, 2008 | Posted in Level 5 : Modify the code | No Comments
Edit the file called “YourWordPressFolder/wp-admin/themes.php”
Look for the code below (should start around line 30)
$themes = get_themes();
$ct = current_theme_info();
ksort( $themes );
$theme_total = count( $themes );
$per_page = 15;
Change $per_page from the last row to whatever you wish.
The default value for $per_page is 15.
August 28th, 2008 | Posted in Level 5 : Modify the code | No Comments
Edit the file called “YourWordPressFolder/wp-admin/edit-link-categories.php”
Look for the code below (should start around line 76)
$pagenum = absint( $_GET['pagenum'] );
if ( empty($pagenum) )
$pagenum = 1;
if( !$catsperpage || $catsperpage < 0 )
$catsperpage = 20;
Change $catsperpage from the last row to whatever you wish.
The default value for $catsperpage is 20.
August 28th, 2008 | Posted in Level 5 : Modify the code | No Comments