Connect with us

Tips & Tricks

Changing your feedbuner form to work with Google

Published

on

A lot of you may be using a email form to gather email’s via Feedburner. I am use that by now you know Google has decided to dump feedburner.com and move all feeds through Google Proxy or Feeburner2 which is a Google Server. Here is the new form you will need to put on your site to get new email address’s:

<form action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" 
onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=YOUR_FEED_NAME', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
    <p class="form-label">Enter your email address:</p><p><input type="text" style="width:140px" name="email"/></p>
    <input type="hidden" value="YOUR_FEED_NAME" name="url"/>
    <input type="hidden" value="<?php bloginfo('name') ?>" name="title"/>
    <input type="hidden" name="loc" value="en_US"/>
    <input id="submit" type="submit" value="Subscribe" />
</form>

That’s it, just be sure to change YOUR_FEED_NAME to your feed name. For example, my feed is now http://feeds2.feedburner.com/WPCult. Where WPCult is now my ID.

Continue Reading
Click to comment

You must be logged in to post a comment Login

Leave a Reply

Tips & Tricks

Add a shortcode

Published

on

This is a simple one.

/**
 * Your Blog title
 *
 */
function my_blog_title() {
	$blogname = get_bloginfo('name');
    return '<span class="blog-title">' . $blogname . '</span>';
}		  	
add_shortcode('blog-title', 'my_blog_title');

Just add this to your functions.php file and then add [blog-title] in any post or page and it will return your Blog Title. :)

Continue Reading

Tips & Tricks

Adding a external file after the first post

Published

on

How might you display a Google ad after the first post or anything you like? It is very simple. You just need to add the variable $loopcounter in the Loop. If the $loopcounter is less than or equal to 1, then include your option. Check out the code:

<?php if (have_posts()) : while (have_posts()) : the_post(); $loopcounter++; ?>

  // your loop

  <?php if ($loopcounter <= 1) { include (STYLESHEETPATH . '/you-file.php'); } ?>

<?php endwhile; ?>

<?php else : ?>

<?php endif; ?>

Pretty simple huh. Well in the $loopcounter line, you may change the include to point to any file or maybe a custom widget like so:

<?php if ($loopcounter <= 1) { dynamic_sidebar( 'Plus Post' ); } ?>

Or use your code directly in between the { & }.

Continue Reading

Tips & Tricks

A simple way to query posts

Published

on

Here is a simple way to call query_posts with an array of options. For all options you my use visit: WordPress Codex.

<?php $my_query = array('showposts' => 4, 'post__not_in' => $do_not_duplicate); ?>

    <?php query_posts($my_query); ?>
Continue Reading

Random Search Terms

Title

Recent Posts: Fully Net Worth . com

Mason Rudolph Net Worth: How Rich is the NFL Player Actually?

Mason Rudolph Net Worth: How Rich is the NFL Player Actually?

Mason Rudolph is an American football quarterback who currently plays for the Pittsburgh Steelers of the National Football League. As of 2019, Mason Rudolph net worth is estimated to be $4 million. Rudolph was born on July 17, 1955, in Rock Hill, South Carolina and was named after his father and grandfather. He went to […]

Lil TJay Net Worth: 5 Interesting Facts About The Rapper

Lil TJay Net Worth: 5 Interesting Facts About The Rapper

Tione Merritt, who is better known by his stage name as Lil Tjay is a young and rising American rapper and songwriter originally from the Bronx in New York. Here are some interesting facts about Lil Tjay: 1. Lil Tjay net worth is estimated to be $600,000 As of 2019, Lil Tjay net worth is […]

Jim Jordan Net Worth: How Rich is the Republican Congressman?

Jim Jordan Net Worth: How Rich is the Republican Congressman?

James Daniel Jordan, also known as Jim Jordan, is an American politician and former wrestler. He is part of the U.S. Representative for Ohio’s 4th congressional district since 2007. Moreover, he is also a ranking member of the House Oversight Committee since 2019. As of 2019, Jim Jordan net worth is estimated to be $400,000. […]

Catherine Tyldesley Net Worth: How Rich is the Actress Actually?

Catherine Tyldesley Net Worth: How Rich is the Actress Actually?

Catherine Tyldesley is an English actress who is best known for her role as Eva Price in the soap opera Coronation Street on ITV. She recently appeared in the popular show called Strictly Come Dancing along with Johannes Radebe in its seventeenth edition. As of 2019, Catherine Tyldesley net worth is estimated to be £800,000. […]

Trending