Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds ads.txt manager to plugin manager #2639

Merged
merged 2 commits into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions includes/class-plugin-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,15 @@ public static function get_managed_plugins() {
'PluginURI' => esc_url( 'https://wordpress.org/plugins/ad-refresh-control/' ),
'Download' => 'wporg',
],
'ads-txt' => [
'Name' => esc_html__( 'Ads.txt Manager', 'newspack' ),
'Description' => esc_html__( 'Create, manage, and validate your ads.txt and app-ads.txt from within WordPress, just like any other content asset.', 'newspack' ),
'Author' => esc_html__( '10up', 'newspack' ),
'PluginURI' => esc_url( 'https://wordpress.org/plugins/ads-txt/' ),
'AuthorURI' => esc_url( 'https://10up.com/' ),
'Download' => 'wporg',
'EditPath' => 'options-general.php?page=adstxt-settings',
],
'publisher-media-kit' => [
'Name' => esc_html__( 'Publisher Media Kit', 'newspack' ),
'Description' => esc_html__( 'Quick and easy option for small to medium sized publishers to digitize their media kit.', 'newspack' ),
Expand Down