NewsPeeps - Stories tagged with WordPress
2
peeps

Prevent password reset hacking on your WordPress blog

published 352 days, 13 hours, 30 minutes ago posted by adminadmin 352 days, 14 hours, 30 minutes ago
Wednesday, August 12, 2009 2:46:01 PM GMT Wednesday, August 12, 2009 1:46:00 PM GMT
As I just said, a new security loophole has just been discovered and it allow anyone to be able to reset your blog admin password. The "hacker" will not get your password (it will be emailed to you) but this can be pretty annoying. Open the wp-login.php file (It is located in WordPress root directory) and go to line 190. You'll find this line: if (empty($key)) Simply replace it by the following and save the <p-login.php file: if(empty($key) || is_array($key)) For more info about the s... (more)
category: News | clicked: 1 | comment | | source: www.wprecipes.com
tags: bot, WordPress
2
peeps

WordPress trick: Disable plugin stylesheet

published 352 days, 13 hours, 38 minutes ago posted by adminadmin 354 days, 6 hours, 45 minutes ago
Wednesday, August 12, 2009 2:38:08 PM GMT Monday, August 10, 2009 9:31:38 PM GMT
The first thing to do is to open the plugin file and find the code which include a plugin-specific stylesheet in the blog header. This function is called wp_enqueue_style(). For example, in case of the useful wp-pagenavi plugin, the code to find is: wp_enqueue_style('wp-pagenavi', get_stylesheet_directory_uri().'/pagenavi-css.css', false, '2.50', 'all'); What we need to find is the handle. The handle is the first argument of the wp_enqueue_style() function, so in the previous example, wp-pagenavi ... (more)
category: News | clicked: 0 | comment | | source: www.wprecipes.com
tags: bot, WordPress
2
peeps

Using Cron to schedule events in your WordPress blog

published 353 days, 12 hours, 51 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 356 days, 12 hours, 43 minutes ago
Tuesday, August 11, 2009 3:24:51 PM GMT Saturday, August 08, 2009 3:33:17 PM GMT
Using Cron to schedule events in your WordPress blog You probably know that WordPress can schedule events. In this recipe, I’ll show you how you create an event that will be executed once hourly, or daily, etc. (more)
category: News | clicked: 0 | comment | | source: www.wprecipes.com
tags: WordPress
1
peeps

Breadcrumbs in WordPress

published 358 days, 16 hours, 35 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 359 days, 13 hours, 42 minutes ago
Thursday, August 06, 2009 11:41:07 AM GMT Wednesday, August 05, 2009 2:33:49 PM GMT
Breadcrumbs are such a standard design pattern these days I find it surprising there isn’t a build in WordPress function for displaying one. But no matter, that’s what plugins are for. A quick Google search brings up a couple. Yoast has one, so you know that one is pretty good. The other popular one is the NavXT plugin, which I actually used recently on a project and can fully vouch for it. Like about any other plugin, it’s as simple as downloading, uploading to your plugins folder, and activating i... (more)
category: News | clicked: 0 | comment | | source: digwp.com
tags: WordPress
1
peeps

Show Off Your WordPress Database Statistics

published 358 days, 16 hours, 35 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 359 days, 13 hours, 43 minutes ago
Thursday, August 06, 2009 11:41:07 AM GMT Wednesday, August 05, 2009 2:32:58 PM GMT
Did you know that WordPress makes it super-easy to display some basic statistics about your database performance? The information may be displayed publicly on your web page, slightly hidden in your source code, or entirely private so only you can see it. There are two basic statistics that are drop-dead easy to include on your pages:The number of database queries that your page is makingHow many seconds it took your server to complete those queries The number of database queries is generated from the fo... (more)
category: News | clicked: 0 | comment | | source: digwp.com
tags: WordPress
1
peeps

Canonical URL's for WordPress - Yoast - Tweaking Websites

posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 367 days, 8 hours, 40 minutes ago
Tuesday, July 28, 2009 7:36:21 PM GMT
This plugin helps you solve duplicate content issues on your site. It's not the cure for all evil, but it will make it easier by preventing tagged URL's from being indexed. Suppose you have read my Twitter Analytics post, and you've started tagging all the URL's you spread on Twitter with Google Analytics campaign variables. So at some point, a search engine would enter your site through this URL: (more)
category: News | clicked: 0 | comment | | source: yoast.com
tags: WordPress
1
peeps

Getting More Fine-Grained with Includes

published 366 days, 13 hours, 26 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 367 days, 9 hours, 40 minutes ago
Wednesday, July 29, 2009 2:49:48 PM GMT Tuesday, July 28, 2009 6:36:45 PM GMT
I was recently putting together a site where I found it very useful to have a number of small areas of the site as separate chunks of code I could include in templates at will. The site wasn’t unusual at all, it just never occurred to me to get this fine-grained with includes before, but I’m starting to do it now and I like it. In my theme folder, I created a directory for “includes” which has a number of these little chunks of code: blogtitlearea.php On this particular site, WordPress is used to po... (more)
category: News | clicked: 0 | comment | | source: diggingintowordpress.com
tags: WordPress
1
peeps

WordCamp Videos Published from WordCamps Dallas and San Francisco « Lorelle on WordPress

published 367 days, 13 hours, 9 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 368 days, 10 hours, 47 minutes ago
Tuesday, July 28, 2009 3:07:25 PM GMT Monday, July 27, 2009 5:29:35 PM GMT
John Pozadzides of One Man’s Blog has been putting together the final videos from WordCamp San Francisco 2009 and WordCamp Dallas. So far he’s released: WordCamp Dallas 2009: Cali Lewis – Building A Vibrant Community WordCamp Dallas 2009: The WordCamp Panel Discussion WordCamp San Francisco 2009: Chris Pirillo – Community WebVisions WordCamp San Francisco 2009: John Lilly – Lessons From Mozilla There were a lot of tremendous speakers at these two events, with more videos anticipated over t... (more)
category: News | clicked: 0 | comment | | source: lorelle.wordpress.com
tags: WordPress
1
peeps

3 Ways to Monitor PHP Errors

published 367 days, 13 hours, 9 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 368 days, 11 hours, 3 minutes ago
Tuesday, July 28, 2009 3:07:25 PM GMT Monday, July 27, 2009 5:13:06 PM GMT
Close monitoring of your site’s PHP errors is crucial to operating a healthy, secure, and well-performing website. When left undetected, PHP errors can reduce performance, waste bandwidth, and leave your site vulnerable to malicious attack. PHP errors usually occur unpredictably and spontaneously, and may be triggered by even the slightest changes to your server configuration, database setup, or WordPress files. Even if your site appears to working properly on the surface, it may in fact be suffering fro... (more)
category: News | clicked: 0 | comment | | source: diggingintowordpress.com
tags: PHP, WordPress
1
peeps

figuring it all out | Elisabeth Thrush

posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 369 days, 3 hours, 24 minutes ago
Monday, July 27, 2009 12:52:20 AM GMT
Ok, so the reason I cannot simply add a nice little picture next to my comments is simple. Unlike my own Wordpress site that has been abandoned, this page that I am an administrator of does not have a “gravatar box” on the profile page. It simply isnt there, much like I do not have a dashboard from which to track visitors, etc. It’s simply not an option. I can however change to diqus, or whatever it is called and maybe that will make setting up an avator possible since a wordpress gravator is not. On a... (more)
category: News | clicked: 0 | comment | | source: castlehom.com
tags: WordPress
1
peeps

Cool plugin find: Changelogger - Yoast - Tweaking Websites

published 370 days, 7 hours, 58 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 371 days, 13 hours, 19 minutes ago
Saturday, July 25, 2009 8:18:17 PM GMT Friday, July 24, 2009 2:56:47 PM GMT
Sometimes the cool plugins are the small little things. With the advent of the new changelog addition to the WordPress readme.txt standard, it became possible to parse these changelogs and show the changes straight into your WP Plugins section. This is exactly what the ChangeLogger plugin does. It looks like this: Pretty nifty huh? I thought this was kinda funny by the way: (more)
category: News | clicked: 0 | comment | | source: yoast.com
tags: WordPress
1
peeps

Remove Smilies, once and for all - Yoast - Tweaking Websites

published 370 days, 7 hours, 58 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 371 days, 13 hours, 21 minutes ago
Saturday, July 25, 2009 8:18:17 PM GMT Friday, July 24, 2009 2:55:38 PM GMT
One of the most annoying features ever in WordPress is the "feature" to convert smilies into images of smileys, MSN style. Where lots of stuff like this is dismissed these days as "plugin territory", this annoying feature has been in WP since 0.71... Anyway, sometimes you'll want to disable this feature from within your theme, or maybe even as a sitewide plugin to disable it all over your WordPress MU installation. It's pretty simple to do . . . (more)
category: News | clicked: 0 | comment | | source: yoast.com
tags: WordPress
1
peeps

WordPress tip: Detect if a post has at least one image

published 370 days, 7 hours, 58 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 371 days, 13 hours, 22 minutes ago
Saturday, July 25, 2009 8:18:17 PM GMT Friday, July 24, 2009 2:54:11 PM GMT
WordPress tip: Detect if a post has at least one image On a WordPress blog, it can be really handy to be able to know if a post has at least one image or not, for example for grabbing the first image and display it. This small code snippet do it, so just read on. (more)
category: News | clicked: 0 | comment | | source: www.wprecipes.com
tags: WordPress
1
peeps

Commonly Useful Page Templates

posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 372 days, 12 hours, 46 minutes ago
Thursday, July 23, 2009 3:30:25 PM GMT
I find on nearly every one of the many, many WordPress powered sites I take care of, I have at least a couple of special page templates that I set up and use frequently. No Title Sometimes it’s nice to have a page template available that doesn’t spit out the title at the top. I am an avid user of Wufoo forms, which inherently have their own titles. It can be awkward to have a page like “Contact Website” which has the regular page title at the top, then a Wufoo title right below it. It is possible to... (more)
category: News | clicked: 0 | comment | | source: diggingintowordpress.com
tags: WordPress
1
peeps

10 Handy WordPress Comments Hacks | Developer's Toolbox | Smashing Magazine

published 371 days, 14 hours, 15 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 372 days, 13 hours, 56 minutes ago
Friday, July 24, 2009 2:00:51 PM GMT Thursday, July 23, 2009 2:20:13 PM GMT
Comments sections are neglected on many blogs. That is definitely a bad thing, because comments represent interaction between you and your readers. In this article, we’ll have a look at 10 great tips and hacks to enhance your blog’s comments section and give it the quality it deserves. (more)
category: News | clicked: 0 | comment | | source: www.smashingmagazine.com
tags: WordPress
1
peeps

Mastering WordPress Post-Revisioning and Auto-Save Features

published 373 days, 15 hours, 58 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 374 days, 16 hours, 42 minutes ago
Wednesday, July 22, 2009 12:18:03 PM GMT Tuesday, July 21, 2009 11:34:02 AM GMT
Not everyone loves the post-revisioning feature of WordPress. In fact, some people can’t stand it. On the one hand, it’s nice to have a library of post-draft revisions to drudge through if you should ever make a mistake. On the other hand, multiple copies of every post is a great way to bloat your database with otherwise useless information. Then, to complicate matters, WordPress’ auto-save functionality seems to have a mind of its own, at times interfering in the revisioning process even when post-re... (more)
category: News | clicked: 0 | comment | | source: diggingintowordpress.com
tags: WordPress
1
peeps

Add a login form on your WordPress Theme

published 374 days, 16 hours, 54 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 375 days, 14 hours, 19 minutes ago
Tuesday, July 21, 2009 11:22:29 AM GMT Monday, July 20, 2009 1:57:03 PM GMT
Add a login form on your WordPress Theme Are you using WordPress as a cms or as a community site? If yes, it can be a cool idea to display a login form in your blog sidebar or on a specific page. Here’s a simple code to do it. (more)
category: News | clicked: 0 | comment | | source: www.wprecipes.com
tags: WordPress
1
peeps

Display a Random Post (with AJAX Refresh)

published 374 days, 16 hours, 54 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 375 days, 14 hours, 44 minutes ago
Tuesday, July 21, 2009 11:22:29 AM GMT Monday, July 20, 2009 1:32:38 PM GMT
I think you’ll be surprised at how ridiculously easy this is. We are going to leverage some serious smartness from both WordPress and from the JavaScript library jQuery.1. Set up area for Random Post (HTML) This could be anything really, just so long as it is a text page element with an ID you can target. I put this in our sidebar.php. (more)
category: News | clicked: 0 | comment | | source: diggingintowordpress.com
tags: WordPress
1
peeps

Wordpress Theme Frameworks explained

published 377 days, 14 hours, 40 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 378 days, 11 hours, 41 minutes ago
Saturday, July 18, 2009 1:36:14 PM GMT Friday, July 17, 2009 4:35:06 PM GMT
A theme framework is a theme that is designed to be a flexible foundation that can serve as a parent theme for building child themes. While not for everyone, they bring good value to the Wordpress themes community through quality code and lot’s of child themes. (more)
category: News | clicked: 0 | comment | | source: www.catswhocode.com
tags: WordPress
1
peeps

Multilingual & Multi Domain Corporate Sites in WordPress - Yoast - Tweaking Websites

published 377 days, 14 hours, 40 minutes ago posted by http://jonnyboats.wordpress.com/http://jonnyboats.wordpress.com/ 378 days, 11 hours, 43 minutes ago
Saturday, July 18, 2009 1:36:14 PM GMT Friday, July 17, 2009 4:32:55 PM GMT
One of the things we're doing more and more of recently is building multilingual, multi domain corporate sites in WordPress. Doing that used to be a fair amount of work, but we've been able to make it a lot simpler lately. We start the process with a simple WordPress MU install, to which we then add the Multi Site Manager plugin, to be able to run multiple domains off of it. Now this is all pretty simple and straight forward. Now we used to have to build a theme in several languages, but we've recently ... (more)
category: News | clicked: 0 | comment | | source: yoast.com
tags: WordPress
Previous 1 2 Next