WordPress - Perl extension for blah blah blah


WordPress documentation  | view source Contained in the WordPress distribution.

Index


NAME

Top

WordPress - Perl extension for blah blah blah

SYNOPSIS

Top

  use WordPress;
  use WordPress;

	my $wp = WordPress->new(

		'http://www.domain.com/xmlrpc.php',
		'admin',
		'pass!'
	);

	# show the available categories
	my @categories = @{ $wp->get_categories };
	print map { "$_\n" } @categories;

	# post in a random category
	$wp->post(

		"Hello, Perl asdf  World!",
		"<h1>Posted via Perl</h1>",
		[ $categories[ rand @categories ] ]
	);

DESCRIPTION

Top

Post to wordpress with the help of perl

EXPORT

None by default.

SEE ALSO

Top

http://www.zoozle.net http://www.zoozle.org http://www.zoozle.biz http://www.sebastian-enger.com/ http://www.zoozle.es

AUTHOR

Top

Sebastian Enger, <bigfish82-A!T-gmail.com>

COPYRIGHT AND LICENSE

Top


WordPress documentation  | view source Contained in the WordPress distribution.