You searched for:

wordpress remove

Wordpress Traffic Poster Pro

by wp-magz on December 16, 2009

Wordpress Traffic Poster Pro

Wordpress Traffic Poster Pro

Forget about manually posting to your blog.

Are you collecting hundreds and hundreds of PLR Articles on every niche possible with the idea of creating a niche site for them? Great! But did you really manage to build and develop all those?Are you wondering how to create a network of niche sites that will grow on autopilot based on content you could provide once for all?

Have Poster Pro do all the work for you!

* You tell it the articles you want to publish and when. Then just press a button and watch it go to work!
* Plus, each post is put into the category you specify,
* �and automatically tagged with keywords relevant to your article so that the search engines and directories can eagerly seek out and gobble up your newly posted content!
* You can even tell Poster Pro how often to post and how many blog postings to publish at once!
* No one will ever know you�re not doing all the work by yourself!
* Thanks to our �mass import� feature, you can easily line up articles in the queue to be published – even years into the future, so it always looks like you�re taking the time to update and maintain your blog for years to come! (no limit on how many articles you import and queue at once)
* You can manage queued articles (edit, delete)
* You can manually post queued articles with the click of a button without waiting for the scheduled date to be reached
* All posted articles are stored and removed from the queue for ease of use
[click to continue...]

{ 0 comments }

WordPress SEO Tips : Remove unnecessary links

by wp-magz on November 11, 2008

If you have a more tag and a comments link on every post, and of course a post title, you have three different links pointing to the same page. This can affect your rankings negatively (again, because Google may think these links point to different pages).

To remove the “#more” text from your ‘Read More’ link, replace the following line in your wp-includes/post-template.php

  1. $output .= ' <a href="'. get_permalink()
  2. . "#more-$id\">$more_link_text</a>";

with

  1. $output .= ' <a href="'. get_permalink()
  2. ."\">$more_link_text</a>";

{ 1 comment }

Hapus Meta Name Generator WordPress

by wp-magz on August 27, 2008

Secara default wordpress menambah automatis meta generator dengan content biasanya diisi dengan string versi wordpress yang digunakan

<meta name="generator" content="WordPress 2.5.1" />

Untuk menghapusnya, silahkan edit file functions.php theme anda yang berada di wp-content/theme/theme-aktif, dan tambah dengan baris berikut

remove_action('wp_head', 'wp_generator');

{ 2 comments }