Software Engineering Evangelist

Tips & tricks in Software Engineering

WordPress Plugin: Home Page Link

The plugin does just what you think - adds a Home link to your site navigation (wp_list_pages). And it’s very easy to use.

  1. Download and unzip the plugin archive.
  2. Place the plugin file under wp-content/plugins directory on your Wordpress Installation
  3. Log in to your admin interface and activate Home Page Link under the ‘Plugins’ tab

That’s it! You should now be able to view your site with its shiny new Home link.

No comments  

HelloWorld !!

public class HelloWorld {
      public static void main(String[] args) {
            Evangelist theniz = new Evangelist(Evangelist.SOFTWARE_ENGINEERING);
            Blog seEvangelistBlog = theniz.download(Blog.WORDPRESS);
            theniz.deployBlog(seEvangelistBlog, “http://127.0.0.1/wordpress/”);
            theniz.personalizeBlog(”http://127.0.0.1/wordpress/”);
            theniz.uploadBlog(seEvangelistBlog, “http://seevangelist.tk/”);
            theniz.initialiseBlog(seEvangelistBlog);

            while(true) {
                  try {
                        theniz.blogging(seEvangelistBlog);
                  } catch(BloggingException bloggingException) {
                        theniz.abandonBlogging(seEvangelistBlog);
                        bloggingException.printStackTrace();
                        System.out.println(”Fatal error : TheNiz bored of blogging !!”);
                        System.exit(1);
                  }
            }
      }
}

No comments