New answers tagged export
0
In what way are you trying to output them? This is a rough code, but with adaption it'll do what you want it to do- bear in mind though that this is PHP so you will need to make a page template with it, or build it into a shortcode. It cannot be used as-is and is not a packaged plugin:
<?php
$exportposts = get_posts('posts_per_page=999'); // get all of ...
2
The data in the options table is stored as serialized arrays. Use get_option() to get the data and unserialize them.
array_walk(
get_option( 'widget_text' ),
function( $d ){
if ( ! empty( $d['title'] ) ) {
printf( '<p>Title: %s<br>Text: %s</p>', $d['title'], htmlentities( $d['text'] ) );
}
}
);
If ...
0
Also - check out PressBooks ... http://pressbooks.com/
I've used it for one of my ebooks and it's great ... also does Kindle and Nook file formats.
Top 50 recent answers are included