• Hello,

    I really like the plugin that you’ve written, yet, like others here, I’d like to be able to tile pages, custom taxonomies and based on tags. The order in which these features would be most helpful (to me) would be:

    1) Being able to pass the taxonomy name in the short code. That is, [post-tiles taxonomy=’resource’] with the default being ‘post’.
    2) Being able to tile pages on the site.
    3) Being able to tile based on tags, rather than just categories.

    Anyway… thanks for your work on this. I could try to add these features (in the above order) myself, but I’m not that experienced in wordpress plugin development.

    Thanks!

    https://www.ads-software.com/plugins/post-tiles/

Viewing 1 replies (of 1 total)
  • Plugin Author ethanhackett

    (@ethanhackett)

    It’s odd something in the plugin is causing the output to prematurely close the anchor tags. If you inspect the code you’ll see your code looks like this.

    <li>
      <a> </a>
      <h3></h3>
      text
    </li>

    It should be

    <li>
      <a>
        <h3></h3>
        text
      </a>
    </li>

    The text is still there on the page just not closing properly.

Viewing 1 replies (of 1 total)
  • The topic ‘Feature Requests: Taxonomies and Tags?’ is closed to new replies.