Advertisement
Guest User

Untitled

a guest
Sep 8th, 2011
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Recent Videos
  4. Plugin URI: http://localblog
  5. Description: Displays Simple Video Embedder videos
  6. Author: Matthew Smith
  7. Version: 1
  8. Author URI: http://localblog
  9. */
  10.  
  11. function mbrecentvids()
  12. { ?>
  13. <?php
  14.  
  15. $querydetails = "
  16. SELECT wposts.*
  17. FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta
  18. WHERE wposts.ID = wpostmeta.post_id
  19. AND wpostmeta.meta_key = '_videoembed'
  20. AND wposts.post_status = 'publish'
  21. AND wposts.post_type = 'post'
  22. ORDER BY wposts.post_date DESC
  23. LIMIT 6
  24. ";
  25.  
  26. $pageposts = $wpdb->get_results($querydetails, OBJECT_K)
  27.  
  28. ?>
  29. <?php if ($pageposts):
  30. foreach ($pageposts as $post):
  31. setup_postdata($post); ?>
  32. <p>
  33. <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title?>"><?php the_title(); ?></a>
  34. </p>
  35. <?php endforeach;
  36. endif; ?>
  37.  
  38. <?php
  39. }
  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