>
Download This Plugin | |
Download Elegant Themes | |
Name | Content Mixx |
Version | 0.2.1 |
Author | Benjamin Sterling |
Rating | 0 |
Last updated | 2011-04-24 01:18:00 |
Downloads |
832
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Content Mixx plugin added 3 bytes of resources to the Home page and 6 bytes of resources to the sample Post page.
Content Mixx plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Content Mixx plugin ads no tables to your Wordpress blog database.This plugin retrieves one or more random post/page or both of them from your WordPress installation Arguments: from (string) - show only posts, or pages, or both - possible values: post | page numberposts (integer) - number of posts/pages to return categories (integers, separated by commas) - limits returned posts to posts filed under categories found in arguments exclude (integers, separated by commas) - limits returned posts to posts NOT filed under categories found in arguments
Sample Code:
<?php
$myposts = contentmixx( 'from=post&numberposts=2&categories=8' );
foreach( $myposts as $post ) {
setup_postdata( $post );
?>
<div class="sideBarPost">
<h3><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h3>
<p><?php the_excerpt(); ?></p>
<p><a href="<?php the_permalink() ?>">Read More...</a></p>
</div>
<?php
}
?>
<?php
$results = contentmixx('numberposts=3');
foreach($results as $post) :
setup_postdata($post);
?>
<h2><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php endforeach; ?>
Please submit any bugs or suggested improvements to https://github.com/bmsterling/Content-Mixx/issues
Need this plugin customized or need a plugin created, contact me via my contact form at http://kenzomedia.com
Also available through twitter, @bmsterling