RIESTERWP Core Bitbucket releasesself-updates
This is a plugin to extend functionality of custom RIESTER themes.
by RIESTER Advertising Agency · bitbucket.org/riester/rwp · website
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://bitbucket.org/riester/rwp/get/master.zipShips its own WordPress updater (Update URI header), so new versions show up under Dashboard → Updates.
An internal plugin for websites created by RIESTER to enhance functionality
Project Structure
. ├── dependencies ├── includes │ ├── config │ │ ├── acf │ │ │ ├── group_cpt_team_member_options.php │ │ │ ├── group_cpt_testimonial_options.php │ │ │ ├── group_nav_item_options.php │ │ │ ├── group_nav_options.php │ │ │ ├── group_reusable_fields.php │ │ │ ├── group_rwp_company_info.php │ │ │ ├── group_rwp_plugin_options.php │ │ │ └── group_rwp_reusable_fields.php │ │ ├── assets.php │ │ └── tinymce.php │ ├── core │ │ ├── ajax │ │ │ ├── Ajax_Admin.php │ │ │ └── Ajax.php │ │ ├── backend │ │ │ ├── Enqueue.php │ │ │ ├── Notices.php │ │ │ └── Settings.php │ │ ├── base │ │ │ ├── Component.php │ │ │ ├── Singleton.php │ │ │ └── Widget.php │ │ ├── frontend │ │ │ ├── Extras │ │ │ │ ├── Body_Class.php │ │ │ │ ├── Clean_Up.php │ │ │ │ ├── JS_Footer.php │ │ │ │ └── Nice_Search.php │ │ │ ├── Enqueue.php │ │ │ └── Favicons.php │ │ ├── helpers │ │ │ ├── Assets.php │ │ │ ├── Collection.php │ │ │ ├── Components.php │ │ │ ├── Context.php │ │ │ ├── index.php │ │ │ ├── Pluralizer.php │ │ │ ├── Request.php │ │ │ ├── Str.php │ │ │ └── Utils.php │ │ ├── html │ │ │ ├── Button.php │ │ │ ├── Card.php │ │ │ ├── Column.php │ │ │ ├── Container.php │ │ │ ├── Element.php │ │ │ ├── Embed.php │ │ │ ├── Grid.php │ │ │ ├── Group.php │ │ │ ├── Html.php │ │ │ ├── HtmlList.php │ │ │ ├── Icon.php │ │ │ ├── Image.php │ │ │ ├── Location.php │ │ │ ├── Modal.php │ │ │ ├── Nav.php │ │ │ ├── NavItem.php │ │ │ ├── NavList.php │ │ │ ├── PostCard.php │ │ │ ├── Row.php │ │ │ ├── Section.php │ │ │ ├── SVG.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableRow.php │ │ │ └── TableSection.php │ │ ├── integrations │ │ │ ├── Elementor │ │ │ │ ├── Widgets │ │ │ │ │ └── OEmbed.php │ │ │ │ └── Elementor.php │ │ │ ├── QM │ │ │ │ ├── Collectors │ │ │ │ │ ├── Collector.php │ │ │ │ │ ├── Debug.php │ │ │ │ │ └── Info.php │ │ │ │ ├── Output │ │ │ │ │ ├── Debug.php │ │ │ │ │ ├── Info.php │ │ │ │ │ └── Output.php │ │ │ │ └── QM.php │ │ │ ├── Walkers │ │ │ │ └── Nav.php │ │ │ ├── Yoast │ │ │ │ ├── Generators │ │ │ │ │ └── Locations.php │ │ │ │ └── Yoast.php │ │ │ ├── ACF.php │ │ │ ├── Bootstrap.php │ │ │ ├── BugHerd.php │ │ │ ├── GravityForms.php │ │ │ ├── Gutenberg.php │ │ │ ├── index.php │ │ │ ├── JS_Plugins.php │ │ │ ├── Lazysizes.php │ │ │ ├── Nav_Menus.php │ │ │ └── Wistia.php │ │ └── internals │ │ ├── PostTypes │ │ │ ├── Types │ │ │ │ ├── GlobalBlock.php │ │ │ │ ├── LandingPage.php │ │ │ │ ├── PageHeader.php │ │ │ │ ├── PostType.php │ │ │ │ ├── TeamMember.php │ │ │ │ └── Testimonial.php │ │ │ └── PostTypes.php │ │ ├── Shortcodes │ │ │ ├── Button.php │ │ │ ├── Copyright.php │ │ │ ├── Location.php │ │ │ ├── Shortcode.php │ │ │ ├── SiblingGrid.php │ │ │ ├── SubpageGrid.php │ │ │ └── TeamGrid.php │ │ ├── SVG │ │ │ ├── Data │ │ │ │ ├── AllowedAttributes.php │ │ │ │ ├── AllowedTags.php │ │ │ │ ├── AttributeInterface.php │ │ │ │ ├── TagInterface.php │ │ │ │ └── XPath.php │ │ │ ├── ElementReference │ │ │ │ ├── Resolver.php │ │ │ │ ├── Subject.php │ │ │ │ └── Usage.php │ │ │ ├── Exceptions │ │ │ │ └── NestingException.php │ │ │ ├── Attributes.php │ │ │ ├── Helper.php │ │ │ ├── Sanitizer.php │ │ │ ├── svg-scanner.php │ │ │ └── Tags.php │ │ ├── Taxonomies │ │ │ ├── Types │ │ │ │ ├── Taxonomy.php │ │ │ │ └── TeamCategory.php │ │ │ └── Taxonomies.php │ │ ├── CustomBulkAction.php │ │ ├── index.php │ │ ├── PageForPostType.php │ │ ├── Relative_Urls.php │ │ ├── SVGs.php │ │ └── Transient.php │ ├── functions │ │ ├── utils │ │ │ ├── acf.php │ │ │ ├── array.php │ │ │ ├── cache.php │ │ │ ├── company.php │ │ │ ├── debug.php │ │ │ ├── file.php │ │ │ ├── html.php │ │ │ ├── image.php │ │ │ ├── menu.php │ │ │ ├── object.php │ │ │ ├── post.php │ │ │ ├── rest.php │ │ │ ├── string.php │ │ │ ├── theme.php │ │ │ └── url.php │ │ ├── filters.php │ │ ├── helpers.php │ │ └── utils.php │ ├── autoloader.php │ ├── index.php │ └── plugin.php ├── rwp.php └── uninstall.php
Installation
License
Changelog
For latest updates, check out the Changelog
Releases
Newest 25 of 27 recorded releases.
These releases are tags only. The author does not attach a packaged zip, so there are no download counts to report.