Example

Posting an entry

<?php
require_once 'Services/Blogging.php';

$bl Services_Blogging::factory(
    
'metaWeblog',
    
'username''password',
    
'http://blog.example.com''/xmlrpc.php'
);


$post $bl->createNewPost();
//$post->setId('14');
$post->title 'Modified post title';
$post->content "This is a modified test post by"
               
" Services_Blogging\r\n\r\nSecond line\r\nThird one";
$post->categories = array('cat1''cat3');

$bl->savePost($post);
$nLastPostId $post->id;
echo 
'post id: ' $nLastPostId "\r\n";

//$bl->deletePost(17);

var_dump($bl->getPost($nLastPostId));
var_dump($bl->getRecentPostTitles(2));
var_dump($bl->getRecentPosts());

?>
Blog posts / entries (Previous) Services_Delicious (Next)
Last updated: Sat, 16 Feb 2019 — Download Documentation
Do you think that something on this page is wrong? Please file a bug report.
View this page in:
  • English

User Notes:

There are no user contributed notes for this page.