Advertisement
Guest User

Untitled

a guest
Sep 8th, 2011
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Recent Videos
  4. Plugin URI: http://Mechabyte.com/
  5. Description: Displays Simple Video Embedder videos
  6. Author: Matthew Smith
  7. Version: 1
  8. Author URI: http://mechabyte.com/
  9. */
  10.  
  11. function mbrecentvids()
  12. { ?>
  13.  
  14. <?php
  15. global $wpdb;
  16. $querydetails = "
  17. SELECT wposts.*
  18. FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta
  19. WHERE wposts.ID = wpostmeta.post_id
  20. AND wpostmeta.meta_key = '_videoembed'
  21. AND wposts.post_status = 'publish'
  22. AND wposts.post_type = 'post'
  23. ORDER BY wposts.post_date DESC
  24. LIMIT 6
  25. ";
  26.  
  27. $pageposts = $wpdb->get_results($querydetails, OBJECT_K);
  28.  
  29. ?>
  30. <?php if ($pageposts):
  31. foreach ($pageposts as $post):
  32. setup_postdata($post); ?>
  33. <p>
  34. <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title?>"><?php the_title(); ?></a>
  35. </p>
  36. <?php endforeach;
  37. endif; ?>
  38.  
  39. <?php }
  40.  
  41. function widget_myHelloWorld() {
  42. ?>
  43. <h3>Latest Videos</h3>
  44. <?php mbrecentvids(); ?>
  45. <?php
  46. }
  47.  
  48. function mblatestvids_init()
  49. {
  50. register_sidebar_widget(__('Latest Videos'), 'widget_myHelloWorld');
  51. }
  52. add_action("plugins_loaded", "mblatestvids_init");
  53. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement