├── assets ├── css │ ├── admin │ │ ├── auto-load-next-post.css │ │ └── auto-load-next-post.min.css │ └── libs │ │ ├── jquery-confirm.min.css │ │ └── select2.min.css ├── images │ ├── banner.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ └── logo.png ├── js │ ├── admin │ │ ├── pro-preview.js │ │ ├── pro-preview.min.js │ │ ├── scanner.js │ │ ├── scanner.min.js │ │ ├── settings.js │ │ └── settings.min.js │ ├── customizer │ │ ├── theme-customizer.js │ │ └── theme-customizer.min.js │ ├── frontend │ │ ├── auto-load-next-post.dev.js │ │ ├── auto-load-next-post.js │ │ └── auto-load-next-post.min.js │ └── libs │ │ ├── jquery-confirm.min.js │ │ ├── jquery.history.js │ │ ├── scrollspy.min.js │ │ └── select2.min.js └── scss │ ├── admin.scss │ ├── admin │ ├── common.scss │ ├── notices.scss │ ├── rtl.scss │ ├── scanner.scss │ ├── settings.scss │ └── setup-wizard.scss │ └── variables.scss ├── auto-load-next-post.php ├── composer.json ├── includes ├── 3rd-party │ ├── 3rd-party.php │ └── plugins │ │ └── wp-rocket.php ├── admin │ ├── class-alnp-admin-action-links.php │ ├── class-alnp-admin-assets.php │ ├── class-alnp-admin-footer.php │ ├── class-alnp-admin-help.php │ ├── class-alnp-admin-notices.php │ ├── class-alnp-admin-pro-preview.php │ ├── class-alnp-admin-settings.php │ ├── class-alnp-admin-site-health.php │ ├── class-alnp-admin.php │ ├── class-alnp-extensions.php │ ├── class-alnp-getting-started.php │ ├── class-alnp-privacy.php │ ├── class-alnp-setup-wizard.php │ ├── class-alnp-sidebar.php │ ├── settings │ │ ├── class-alnp-settings-events.php │ │ ├── class-alnp-settings-misc.php │ │ ├── class-alnp-settings-page.php │ │ ├── class-alnp-settings-templates.php │ │ └── class-alnp-settings-theme-selectors.php │ └── views │ │ ├── html-admin-settings.php │ │ ├── html-admin-sidebar-credits.php │ │ ├── html-admin-sidebar-logo.php │ │ ├── html-admin-sidebar.php │ │ ├── html-admin-tabs.php │ │ ├── html-notice-is-supported.php │ │ ├── html-notice-jetpack-lazy-images-module.php │ │ ├── html-notice-no-comment-selector.php │ │ ├── html-notice-no-theme-selectors.php │ │ ├── html-notice-please-review.php │ │ ├── html-notice-plugin-supported.php │ │ ├── html-notice-requirement-wp.php │ │ ├── html-notice-setup-wizard.php │ │ ├── html-notice-template-location.php │ │ ├── html-notice-theme-ready.php │ │ ├── html-notice-trying-beta.php │ │ └── html-notice-upgrade-warning.php ├── auto-load-next-post-conditional-functions.php ├── auto-load-next-post-core-functions.php ├── auto-load-next-post-deprecated-functions.php ├── auto-load-next-post-formatting-functions.php ├── auto-load-next-post-template-functions.php ├── auto-load-next-post-template-hooks.php ├── auto-load-next-post-themes-supported.php ├── class-alnp-ajax.php ├── class-alnp-autoloader.php ├── class-alnp-install.php ├── customizer │ ├── class-alnp-arbitrary-controller.php │ ├── class-alnp-customizer-scripts.php │ ├── class-alnp-customizer.php │ ├── class-alnp-display-video-controller.php │ └── class-alnp-pro-preview-controller.php └── theme-support │ ├── class-alnp-make.php │ ├── class-alnp-oceanwp.php │ ├── class-alnp-poseidon.php │ ├── class-alnp-storefront.php │ ├── class-alnp-sydney.php │ ├── class-alnp-theme-support.php │ ├── class-alnp-twentyeleven.php │ ├── class-alnp-twentyfifteen.php │ ├── class-alnp-twentyfourteen.php │ ├── class-alnp-twentynineteen.php │ ├── class-alnp-twentyseventeen.php │ ├── class-alnp-twentysixteen.php │ ├── class-alnp-twentyten.php │ ├── class-alnp-twentythirteen.php │ ├── class-alnp-twentytwelve.php │ └── class-alnp-understrap.php ├── languages ├── auto-load-next-post-fr_FR.mo ├── auto-load-next-post-fr_FR.po └── auto-load-next-post.pot ├── license.txt ├── notes.txt ├── readme.txt ├── release.sh ├── templates ├── content-alnp.php ├── content │ └── content.php └── theme-support │ ├── make │ └── content-alnp.php │ ├── oceanwp │ └── content-alnp.php │ ├── twentyeleven │ └── content-alnp.php │ ├── twentynineteen │ ├── content-alnp.php │ ├── content-page.php │ └── content-single.php │ ├── twentyten │ └── content-alnp.php │ └── understrap │ └── content-alnp.php ├── uninstall.php └── vendor └── connekt-plugin-installer ├── assets └── installer.js └── class-connekt-plugin-installer.php /assets/css/admin/auto-load-next-post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/css/admin/auto-load-next-post.css -------------------------------------------------------------------------------- /assets/css/admin/auto-load-next-post.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/css/admin/auto-load-next-post.min.css -------------------------------------------------------------------------------- /assets/css/libs/jquery-confirm.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/css/libs/jquery-confirm.min.css -------------------------------------------------------------------------------- /assets/css/libs/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/css/libs/select2.min.css -------------------------------------------------------------------------------- /assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/images/banner.png -------------------------------------------------------------------------------- /assets/images/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/images/icon-128x128.png -------------------------------------------------------------------------------- /assets/images/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/images/icon-256x256.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/js/admin/pro-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/admin/pro-preview.js -------------------------------------------------------------------------------- /assets/js/admin/pro-preview.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/admin/pro-preview.min.js -------------------------------------------------------------------------------- /assets/js/admin/scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/admin/scanner.js -------------------------------------------------------------------------------- /assets/js/admin/scanner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/admin/scanner.min.js -------------------------------------------------------------------------------- /assets/js/admin/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/admin/settings.js -------------------------------------------------------------------------------- /assets/js/admin/settings.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/admin/settings.min.js -------------------------------------------------------------------------------- /assets/js/customizer/theme-customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/customizer/theme-customizer.js -------------------------------------------------------------------------------- /assets/js/customizer/theme-customizer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/customizer/theme-customizer.min.js -------------------------------------------------------------------------------- /assets/js/frontend/auto-load-next-post.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/frontend/auto-load-next-post.dev.js -------------------------------------------------------------------------------- /assets/js/frontend/auto-load-next-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/frontend/auto-load-next-post.js -------------------------------------------------------------------------------- /assets/js/frontend/auto-load-next-post.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/frontend/auto-load-next-post.min.js -------------------------------------------------------------------------------- /assets/js/libs/jquery-confirm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/libs/jquery-confirm.min.js -------------------------------------------------------------------------------- /assets/js/libs/jquery.history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/libs/jquery.history.js -------------------------------------------------------------------------------- /assets/js/libs/scrollspy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/libs/scrollspy.min.js -------------------------------------------------------------------------------- /assets/js/libs/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/js/libs/select2.min.js -------------------------------------------------------------------------------- /assets/scss/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/scss/admin.scss -------------------------------------------------------------------------------- /assets/scss/admin/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/scss/admin/common.scss -------------------------------------------------------------------------------- /assets/scss/admin/notices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/scss/admin/notices.scss -------------------------------------------------------------------------------- /assets/scss/admin/rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/scss/admin/rtl.scss -------------------------------------------------------------------------------- /assets/scss/admin/scanner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/scss/admin/scanner.scss -------------------------------------------------------------------------------- /assets/scss/admin/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/scss/admin/settings.scss -------------------------------------------------------------------------------- /assets/scss/admin/setup-wizard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/scss/admin/setup-wizard.scss -------------------------------------------------------------------------------- /assets/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/assets/scss/variables.scss -------------------------------------------------------------------------------- /auto-load-next-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/auto-load-next-post.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/composer.json -------------------------------------------------------------------------------- /includes/3rd-party/3rd-party.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/3rd-party/3rd-party.php -------------------------------------------------------------------------------- /includes/3rd-party/plugins/wp-rocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/3rd-party/plugins/wp-rocket.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-admin-action-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-admin-action-links.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-admin-assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-admin-assets.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-admin-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-admin-footer.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-admin-help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-admin-help.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-admin-notices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-admin-notices.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-admin-pro-preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-admin-pro-preview.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-admin-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-admin-settings.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-admin-site-health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-admin-site-health.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-admin.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-extensions.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-getting-started.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-getting-started.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-privacy.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-setup-wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-setup-wizard.php -------------------------------------------------------------------------------- /includes/admin/class-alnp-sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/class-alnp-sidebar.php -------------------------------------------------------------------------------- /includes/admin/settings/class-alnp-settings-events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/settings/class-alnp-settings-events.php -------------------------------------------------------------------------------- /includes/admin/settings/class-alnp-settings-misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/settings/class-alnp-settings-misc.php -------------------------------------------------------------------------------- /includes/admin/settings/class-alnp-settings-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/settings/class-alnp-settings-page.php -------------------------------------------------------------------------------- /includes/admin/settings/class-alnp-settings-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/settings/class-alnp-settings-templates.php -------------------------------------------------------------------------------- /includes/admin/settings/class-alnp-settings-theme-selectors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/settings/class-alnp-settings-theme-selectors.php -------------------------------------------------------------------------------- /includes/admin/views/html-admin-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-admin-settings.php -------------------------------------------------------------------------------- /includes/admin/views/html-admin-sidebar-credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-admin-sidebar-credits.php -------------------------------------------------------------------------------- /includes/admin/views/html-admin-sidebar-logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-admin-sidebar-logo.php -------------------------------------------------------------------------------- /includes/admin/views/html-admin-sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-admin-sidebar.php -------------------------------------------------------------------------------- /includes/admin/views/html-admin-tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-admin-tabs.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-is-supported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-is-supported.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-jetpack-lazy-images-module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-jetpack-lazy-images-module.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-no-comment-selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-no-comment-selector.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-no-theme-selectors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-no-theme-selectors.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-please-review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-please-review.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-plugin-supported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-plugin-supported.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-requirement-wp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-requirement-wp.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-setup-wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-setup-wizard.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-template-location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-template-location.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-theme-ready.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-theme-ready.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-trying-beta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-trying-beta.php -------------------------------------------------------------------------------- /includes/admin/views/html-notice-upgrade-warning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/admin/views/html-notice-upgrade-warning.php -------------------------------------------------------------------------------- /includes/auto-load-next-post-conditional-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/auto-load-next-post-conditional-functions.php -------------------------------------------------------------------------------- /includes/auto-load-next-post-core-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/auto-load-next-post-core-functions.php -------------------------------------------------------------------------------- /includes/auto-load-next-post-deprecated-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/auto-load-next-post-deprecated-functions.php -------------------------------------------------------------------------------- /includes/auto-load-next-post-formatting-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/auto-load-next-post-formatting-functions.php -------------------------------------------------------------------------------- /includes/auto-load-next-post-template-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/auto-load-next-post-template-functions.php -------------------------------------------------------------------------------- /includes/auto-load-next-post-template-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/auto-load-next-post-template-hooks.php -------------------------------------------------------------------------------- /includes/auto-load-next-post-themes-supported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/auto-load-next-post-themes-supported.php -------------------------------------------------------------------------------- /includes/class-alnp-ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/class-alnp-ajax.php -------------------------------------------------------------------------------- /includes/class-alnp-autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/class-alnp-autoloader.php -------------------------------------------------------------------------------- /includes/class-alnp-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/class-alnp-install.php -------------------------------------------------------------------------------- /includes/customizer/class-alnp-arbitrary-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/customizer/class-alnp-arbitrary-controller.php -------------------------------------------------------------------------------- /includes/customizer/class-alnp-customizer-scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/customizer/class-alnp-customizer-scripts.php -------------------------------------------------------------------------------- /includes/customizer/class-alnp-customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/customizer/class-alnp-customizer.php -------------------------------------------------------------------------------- /includes/customizer/class-alnp-display-video-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/customizer/class-alnp-display-video-controller.php -------------------------------------------------------------------------------- /includes/customizer/class-alnp-pro-preview-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/customizer/class-alnp-pro-preview-controller.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-make.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-oceanwp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-oceanwp.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-poseidon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-poseidon.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-storefront.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-storefront.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-sydney.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-sydney.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-theme-support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-theme-support.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-twentyeleven.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-twentyeleven.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-twentyfifteen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-twentyfifteen.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-twentyfourteen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-twentyfourteen.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-twentynineteen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-twentynineteen.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-twentyseventeen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-twentyseventeen.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-twentysixteen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-twentysixteen.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-twentyten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-twentyten.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-twentythirteen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-twentythirteen.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-twentytwelve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-twentytwelve.php -------------------------------------------------------------------------------- /includes/theme-support/class-alnp-understrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/includes/theme-support/class-alnp-understrap.php -------------------------------------------------------------------------------- /languages/auto-load-next-post-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/languages/auto-load-next-post-fr_FR.mo -------------------------------------------------------------------------------- /languages/auto-load-next-post-fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/languages/auto-load-next-post-fr_FR.po -------------------------------------------------------------------------------- /languages/auto-load-next-post.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/languages/auto-load-next-post.pot -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/license.txt -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/notes.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/readme.txt -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/release.sh -------------------------------------------------------------------------------- /templates/content-alnp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/content-alnp.php -------------------------------------------------------------------------------- /templates/content/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/content/content.php -------------------------------------------------------------------------------- /templates/theme-support/make/content-alnp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/theme-support/make/content-alnp.php -------------------------------------------------------------------------------- /templates/theme-support/oceanwp/content-alnp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/theme-support/oceanwp/content-alnp.php -------------------------------------------------------------------------------- /templates/theme-support/twentyeleven/content-alnp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/theme-support/twentyeleven/content-alnp.php -------------------------------------------------------------------------------- /templates/theme-support/twentynineteen/content-alnp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/theme-support/twentynineteen/content-alnp.php -------------------------------------------------------------------------------- /templates/theme-support/twentynineteen/content-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/theme-support/twentynineteen/content-page.php -------------------------------------------------------------------------------- /templates/theme-support/twentynineteen/content-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/theme-support/twentynineteen/content-single.php -------------------------------------------------------------------------------- /templates/theme-support/twentyten/content-alnp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/theme-support/twentyten/content-alnp.php -------------------------------------------------------------------------------- /templates/theme-support/understrap/content-alnp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/templates/theme-support/understrap/content-alnp.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/uninstall.php -------------------------------------------------------------------------------- /vendor/connekt-plugin-installer/assets/installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/vendor/connekt-plugin-installer/assets/installer.js -------------------------------------------------------------------------------- /vendor/connekt-plugin-installer/class-connekt-plugin-installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoloadnextpost/auto-load-next-post/HEAD/vendor/connekt-plugin-installer/class-connekt-plugin-installer.php --------------------------------------------------------------------------------