{"id":46235501,"url":"https://github.com/wpgaurav/gt-links","last_synced_at":"2026-03-03T19:00:48.067Z","repository":{"id":337642957,"uuid":"1154538447","full_name":"wpgaurav/gt-links","owner":"wpgaurav","description":"A fast, lightweight Pretty Links alternative for WordPress.  GT Link Manager gives you branded short URLs, quick redirect management, category organization, CSV import/export, and block editor integration without plugin bloat.","archived":false,"fork":false,"pushed_at":"2026-02-22T12:13:42.000Z","size":344,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-22T16:50:31.599Z","etag":null,"topics":["pretty-links","wordpress","wordpress-plugin"],"latest_commit_sha":null,"homepage":"https://gauravtiwari.org/product/gt-link-manager/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wpgaurav.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-10T13:58:51.000Z","updated_at":"2026-02-22T12:13:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"efe80b4b-080b-457f-98af-8b1e9c38e690","html_url":"https://github.com/wpgaurav/gt-links","commit_stats":null,"previous_names":["wpgaurav/gt-links"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/wpgaurav/gt-links","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpgaurav%2Fgt-links","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpgaurav%2Fgt-links/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpgaurav%2Fgt-links/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpgaurav%2Fgt-links/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wpgaurav","download_url":"https://codeload.github.com/wpgaurav/gt-links/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpgaurav%2Fgt-links/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30056056,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T18:21:05.932Z","status":"ssl_error","status_checked_at":"2026-03-03T18:20:59.341Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pretty-links","wordpress","wordpress-plugin"],"created_at":"2026-03-03T19:00:29.962Z","updated_at":"2026-03-03T19:00:48.061Z","avatar_url":"https://github.com/wpgaurav.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GT Link Manager\n\nA fast, lightweight Pretty Links alternative for WordPress.\n\nGT Link Manager gives you branded short URLs, quick redirect management, category organization, CSV import/export, and block editor integration without plugin bloat.\n\n## Highlights\n\n- Fast redirects with custom indexed tables\n- Redirect handling on `init` for low overhead\n- Redirect types: `301`, `302`, `307`\n- Rel attributes: `nofollow`, `sponsored`, `ugc`\n- Categories + tags + notes\n- Bulk actions and Quick Edit in admin list\n- CSV import/export (including LinkCentral-style data)\n- REST API for links/categories\n- Gutenberg toolbar button to insert saved links\n\n## Requirements\n\n- WordPress `6.4+`\n- PHP `8.2+`\n\n## Installation (Local)\n\n1. Copy this plugin folder to:\n   `wp-content/plugins/gt-link-manager`\n2. Activate **GT Link Manager** from WP Admin -\u003e Plugins.\n3. Go to **GT Links** in admin.\n\n## Main Admin Pages\n\n- `GT Links -\u003e All Links`\n- `GT Links -\u003e Add New`\n- `GT Links -\u003e Categories`\n- `GT Links -\u003e Settings`\n- `GT Links -\u003e Import / Export`\n\n## CSV Import Format (Generic)\n\n```csv\nname,slug,url,redirect_type,rel,noindex,category,tags,notes\nFlyingPress,flyingpress,https://example.com,301,\"nofollow,sponsored\",1,Caching,\"wp,speed\",\"Campaign link\"\n```\n\nSample files are in:\n\n- `samples/gt-links-sample.csv`\n- `samples/linkcentral-sample.csv`\n\n## REST API\n\nBase namespace:\n\n`/wp-json/gt-link-manager/v1`\n\n### Links\n\n- `GET /links`\n- `POST /links`\n- `GET /links/{id}`\n- `PATCH /links/{id}`\n- `DELETE /links/{id}`\n- `POST /links/bulk-category` (`mode: move|copy`)\n\n### Categories\n\n- `GET /categories`\n- `POST /categories`\n- `PATCH /categories/{id}`\n- `DELETE /categories/{id}`\n\nCapability check defaults to `edit_posts` (filterable).\n\n## Build Assets\n\nThis repo currently ships static plugin assets directly (no JS build pipeline required for the included files).\n\n## File Structure\n\n```text\ngt-link-manager.php\nincludes/\nassets/\nblocks/\nlanguages/\nsamples/\n```\n\n## Notes\n\n- WordPress.org packaging details remain in `readme.txt`.\n- `README.md` is for repository/developer usage.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwpgaurav%2Fgt-links","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwpgaurav%2Fgt-links","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwpgaurav%2Fgt-links/lists"}