• Resolved debycoles

    (@debycoles)


    I’ve just installed the plugin and am learning how to use it.
    But there are some terms I’m not familiar with and I don’t know what they do.
    Is there any documentation I can follow? Any how-to?

    What is ‘offset’ for example? What does this do? Is it a way to ignore the latest X number of posts in a category maybe?

    meta key, meta value and tax operator?

    And is there any way I can change the appearance of the read more button?

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tom

    (@edge22)

    Hi there,

    Since the plugin uses WP_Query, most of the options can be found and explained here: https://codex.ww.wp.xz.cn/Class_Reference/WP_Query

    The read more button has color options in our pro version. Otherwise, you can use CSS:

    #wpsp-123 .wp-show-posts-read-more, 
    #wpsp-123.wp-show-posts-read-more:visited {
        background: #0c0c0d;
        border-color: #0c0c0d;
        color: #ffffff;
    }
    
    #wpsp-123 .wp-show-posts-read-more:hover, 
    #wpsp-123 .wp-show-posts-read-more:focus {
        background: #212121;
        border-color: #212121;
        color: #dfd9d8;
    }

    You just need to adjust the 123 with the ID of your list.

    Thread Starter debycoles

    (@debycoles)

    Ooh that WP Query is complicated. Thank goodness for the plugin!
    I’ll be able to work it all out I think.

    You rock! Thank you for the help.

    Plugin Author Tom

    (@edge22)

    No problem 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Is there any documentation?’ is closed to new replies.