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


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



6th
May 11

Simple Facebook Link WordPress plugin updated


Indeed, it’s more than updated… it has a new name. It is now named Artiss Facebook Link, and is part of a new naming policy for my plugins.

A short code option has been added but, more crucially for me, it uses my new coding standards including use of PHPDoc to document the code.

Full details can be found on the plugin page.

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