WriteToMyBlog Auto Fill
WriteToMyBlog Auto Fill is an easy way for you to pre fill WriteToMyBlog with your own content. You can use a form (as shown below) within your Blog (template).
Often people leave comments on a post within a Blog; in addition you could use this code to allow people to write a post in their own Blog with a Trackback to your post. WriteToMyBlog will be automatically pre filled with the post title, content and Trackback address. You can use the code provided and modify it as you see fit.
You can test Auto Fill with this form:
Auto Fill Fields:
- autofill (value must be set to 1)
- title
- content
- trackback (value must be url)
- tags (value must be comma separated list)
Auto Fill HTML Form Code (fields as hidden elements):
<form method="post" name="wtmb_autofill" action="http://writetomyblog.com/">
<input type="hidden" name="autofill" value="1" />
<input type="text" name="title" value="" />
<textarea name="content" cols="0" rows="0" style="display: none;">
<blockquote></blockquote>
</textarea>
<input type="hidden" name="trackback" value="" />
<input type="hidden" name="tags" value="" />
<input type="submit" value="Submit" name="submit" />
</form>
Auto Fill HTML Form Code (with WordPress Template Tags):
<form method="post" name="wtmb_autofill" action="http://writetomyblog.com/">
<input type="hidden" name="autofill" value="1" />
<input type="text" name="title" value="<?php the_title(); ?>" />
<textarea name="content" cols="0" rows="0" style="display: none;">
<blockquote><?php the_content(); ?></blockquote>
</textarea>
<input type="hidden" name="trackback" value="<?php trackback_url(true); ?>" />
<input type="hidden" name="tags" value="" />
<input type="submit" value="Submit" name="submit" />
</form>