项目作者: superevilmegaco

项目描述 :
A WordPress-Plugin to retrieve random posts.
高级语言: PHP
项目地址: git://github.com/superevilmegaco/wp-better-random-posts.git
创建时间: 2018-05-26T22:38:39Z
项目社区:https://github.com/superevilmegaco/wp-better-random-posts

开源协议:

下载


WP Better Random Posts

A better WordPress-Plugin for getting random posts.

Installation

Go to your WordPress installation directory,
then change to wp-content/plugins.

Then either run (the preferred way):

  1. git clone \
  2. https://git.superevilmegaco.com/wordpress/wp-better-random-posts.git \
  3. -b v3.0.1 \
  4. wp-better-random-posts

or (no easy updating via git or git submodules)
download the latest release from here
and unzip its contents to wp-content/plugins/wp-better-random-posts.

Then head over to www.your-wordpress-installation-domain.tld/wp-admin/plugins.php
and activate the plugin.

Usage

There are two public methods:

  • WpBetterRandomPosts::GetRandomPostsList($randomPostCount= 5, $opts = array())
  • WpBetterRandomPosts::GetRandomPostsData($randomPostCount= 5, $opts = array())

GetRandomPostsList() returns a HTML <ul> string.

  1. <?php
  2. echo WpBetterRandomPosts::GetRandomPostsList(10, array(
  3. 'cls' => 'wp-better-random-posts', // CSS-Class-Name for the list
  4. 'fetchTeaserImage' => false, // do not fetch teaser images
  5. // if set to true, it'll fetch the first image of each post
  6. 'cache' => false, // set to any int, to cache results on disk
  7. // the value is the time the cache is valid in seconds
  8. // make sure the `wp-contents/plugin/wp-better-random-posts/cache`
  9. // directory is writable
  10. ));
  11. ?>

GetRandomPostsData() returns an PHP array.

  1. <?php
  2. $data = WpBetterRandomPosts::GetRandomPostsData(10, array(
  3. 'fetchTeaserImage' => false, // do not fetch teaser images
  4. // if set to true, it'll fetch the first image of each post
  5. 'cache' => false, // set to any int, to cache results on disk
  6. // the value is the time the cache is valid in seconds
  7. // make sure the `wp-contents/plugin/wp-better-random-posts/cache`
  8. // directory is writable
  9. ));
  10. print_r($data);
  11. ?>

Basic CSS styling

Styling is completely up to you.
Here’s a basic example on what one could imagine, when using
echo WpBetterRandomPosts::GetRandomPostsList();:

  1. ul.wp-better-random-posts {
  2. width: 100%;
  3. max-width:560px;
  4. text-align: center;
  5. }
  6. .wp-better-random-posts li {
  7. text-align: left;
  8. margin: 20px;
  9. position: relative;
  10. height: 90px;
  11. overflow: hidden;
  12. -webkit-box-shadow: 2px 2px 9px 0 rgba(0,0,0,0.2);
  13. box-shadow: 2px 2px 9px 0 rgba(0,0,0,0.2);
  14. vertical-align: middle;
  15. display:flex;
  16. flex-wrap:wrap;
  17. flex-direction:row;
  18. justify-content:flex-start;
  19. align-items:stretch;
  20. }
  21. .wp-better-random-posts .title {
  22. font-size: 2em;
  23. margin: 15px;
  24. color: #222222;
  25. order: 2;
  26. flex-basis: 100%;
  27. height: 90px;
  28. font-weight: bold;
  29. display: inline-flex;
  30. width: calc(100% - 120px);
  31. position: absolute;
  32. }
  33. .wp-better-random-posts .teaserimage {
  34. order: 1;
  35. flex-basis: 90px;
  36. }
  37. .wp-better-random-posts .img {
  38. display: inline-block;
  39. width: 90px;
  40. height: 90px;
  41. background-size: cover;
  42. background-position: center center;
  43. box-shadow: inset 0 0 3em rgba(0,0,0,0.12);
  44. }

Development

All linters are run async while editing, while all fixers are run synchronously
before writing the contents of the buffer to disk using ALE.

Linters

Fixers