Considering how regularly new versions of Firefox now come along, that's quite some bug fix list in version 10! http://t.co/K3I2vLpW 1 week ago


20th
May 11

Organ Donor Register – my first deleted WordPress plugin



Up until now I haven’t retried any of my plugins. However, there are a few I wish to – mainly wrapping their functionality into other plugins.

In the case of Organ Donor Register, however, it’s gone completely.

This plugin would add an image to your sidebar promoting the Organ Donor Register in the UK. You could click on the chosen image (there were a number to choose from) to visit the registration on their site.

I created this plugin as I am a big believer in their cause and wanted to make it easier for UK WordPress users to help in the promotion. Sadly, though, the NHS Organ Donation people thought otherwise. When creating the plugin I had some initial contact with them and they assisted me with the images – the intention was that they’d give their approval to my work and this would help in promoting it. After all my work however, they didn’t. Indeed, they stopped communicating.

13 months after releasing it the plugin has had just 253 downloads.

My wife used to work for a chemicals company who supplied many of the larger charities who were doing medical research. She found that they had so much money they stopped caring about ensuring that every penny of donations were spent wisely – if they were accidentally charged twice they wouldn’t even notice and rarely even seemed bothered. My wife stopped donating to them after this and, instead, gave to local charities, for example hospices. I wonder if this is the same for NHS Blood & Transplant (as they are now called – again, spending money on regularly changing their name seems to be a clue as to how wise they are being with our money). Of course, in this case, NHSBT are not a charity but part of the NHS, paid for by the UK tax-payer. Still, the same applies as they are asking for people’s assistance to help with promotion.

In fact, when they publish newsletters and refer to them as “stakeholder newsletters” then you know they’ve been over-come with business babble and general nonsense.

Anyway, I decided to stop supporting it and, the easiest way to ensure this, was to remove the plugin from WordPress.org.

The first thing I did was remove all the code from the SVN archive. Next, I sent an email to plugins@wordpress.org requesting the plugin be removed from the repository – although the code no longer exists, the plugin will still appear on the site until this is done. Now it’s gone. Totally.

 

Delicious Digg Facebook LinkedIn Read It Later reddit StumbleUpon Twitter SeparatorEmail Google Translate PDF Online Print Friendly



11th
May 11

Simple Code Embed WordPress plugin updated


Simple Code Embed (now named Artiss Code Embed) has had a total make-over, bringing with it much more efficient code and a total re-write of the instructions.

The admin options has had an overhaul too, with users able to now personalise each aspect of the embed code.

All details are on the plugin page.

Delicious Digg Facebook LinkedIn Read It Later reddit StumbleUpon Twitter SeparatorEmail Google Translate PDF Online Print Friendly



10th
May 11

WordPress Tips


This article is provided by Kevin Moor who writes for different sites, which inter alias are working to find better registry repair.

WordPress is powered by PHP and MySQL which is an open resource blog gizmo and a publishing platform as well. WordPress have many features like plug-in architecture and a template system. Actually, WordPress has been widely by thousands of biggest websites in the World Wide Web.

For sure as computer enthusiasts, you have already come across on any feature from a blog. You may wonder how you can get this in your WordPress blog. You do not need to worry anymore because here are some tips that you will absolutely find it effective and very useful.

  • Use Custom Page as your Home Page in WordPress
    This is the first thing that you must have to know on how to create a custom page. There is a need for you to duplicate your page.php or you can create a new .php file and enter the following code at the very top of it: <!--?php /* Template Name: WPBeginnerT1 */ ?-->.You may change the name of the template and can even change the style on the page depending on your preference. Just go to your WordPress admin panel and choose your desired template. You will then have to publish this page and go to Settings and select Reading in the admin panel. Choose the page to be your homepage and you can now have a Custom Home Page.
  • Create a Page that Displays Random Posts
    For sure you have seen this cool feature somewhere on web site, right? Want to try this cool feature for your site? Simply paste the following code on your custom page template: 

    <?php
    query_posts(array('orderby' => 'rand', 'showposts' => 1));
    if (have_posts()) :
    while (have_posts()) : the_post(); ?>
    <h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
    <?php the_content(); ?>
    <?php endwhile;
    endif; ?>
  • Display External RSS Feed on Your Site
    Have you noticed bloggers who display their blogs on other’s web site? Do you want to try it too, to earn extra traffic on your website? To do this, just paste the following code in your theme:

    <?php include_once(ABSPATH.WPINC.'/feed.php');
    $rss = fetch_feed('http://feeds.feedburner.com/wpbeginner');
    $maxitems = $rss->get_item_quantity(5);
    $rss_items = $rss->get_items(0, $maxitems);
    ?>
    <ul>
    <?php if ($maxitems == 0) echo '<li>No items.</li>';
    else
    // Loop through each feed item and display each item as a hyperlink.
    foreach ( $rss_items as $item ) : ?>
    <li>
    <a href='<?php echo $item->get_permalink(); ?>'
    title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
    <?php echo $item->get_title(); ?></a>
    </li>
    <?php endforeach; ?>
    </ul>

These tips will surely help you. Just remember the tips and for sure your success is within reach.

Delicious Digg Facebook LinkedIn Read It Later reddit StumbleUpon Twitter SeparatorEmail Google Translate PDF Online Print Friendly