{"id":42095590,"url":"https://github.com/lexo-ch/acf-seo","last_synced_at":"2026-01-26T11:18:56.332Z","repository":{"id":209488161,"uuid":"716580532","full_name":"lexo-ch/acf-seo","owner":"lexo-ch","description":"SEO addon based on ACF.","archived":false,"fork":false,"pushed_at":"2025-07-21T14:25:40.000Z","size":405,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-21T16:37:14.661Z","etag":null,"topics":["php8","plugin","releases","updates","wordpress","wordpress-plugin"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lexo-ch.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2023-11-09T12:42:12.000Z","updated_at":"2024-06-30T20:17:30.000Z","dependencies_parsed_at":"2023-11-27T16:55:34.945Z","dependency_job_id":"5b85750a-50d7-4f01-8d11-343d2fa01c20","html_url":"https://github.com/lexo-ch/acf-seo","commit_stats":null,"previous_names":["lexo-ch/acf-seo"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/lexo-ch/acf-seo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexo-ch%2Facf-seo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexo-ch%2Facf-seo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexo-ch%2Facf-seo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexo-ch%2Facf-seo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lexo-ch","download_url":"https://codeload.github.com/lexo-ch/acf-seo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexo-ch%2Facf-seo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28777012,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T09:42:00.929Z","status":"ssl_error","status_checked_at":"2026-01-26T09:42:00.591Z","response_time":59,"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":["php8","plugin","releases","updates","wordpress","wordpress-plugin"],"created_at":"2026-01-26T11:18:55.570Z","updated_at":"2026-01-26T11:18:56.325Z","avatar_url":"https://github.com/lexo-ch.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LEXO ACF SEO\nSEO addon based on ACF.\n\n---\n## Versioning\nRelease tags are created with Semantic versioning in mind. Commit messages were following convention of [Conventional Commits](https://www.conventionalcommits.org/).\n\n---\n## Compatibility\n- WordPress version `\u003e=6.4`. Tested and works fine up to `6.5.5`.\n- PHP version `\u003e=7.4.1`. Tested and works fine up to `8.3.8`.\n\n---\n## Installation\n1. Go to the [latest release](https://github.com/lexo-ch/acf-seo/releases/latest/).\n2. Under Assets, click on the link named `Version x.y.z`. It's a compiled build.\n3. Extract zip file and copy the folder into your `wp-content/plugins` folder and activate LEXO ACF SEO in plugins admin page. Alternatively, you can use downloaded zip file to install it directly from your plugin admin page.\n\n---\n## Filters\n#### - `acfseo/location`\n*Parameters*\n`apply_filters('acfseo/location', $location);`\n- $location (array) Change the locations where LEXO ACF SEO fields should be shown. By default it's shwon only on `page` post type.\n\nDefault `$location` array definition is:\n```php\n$location = [\n    [\n        [\n            'param'     =\u003e 'post_type',\n            'operator'  =\u003e '==',\n            'value'     =\u003e 'page',\n        ]\n    ]\n];\n```\nFor durther changes use ACF logic for `location` of the groups.\n\n#### - `acfseo/show-heading-2`\n*Parameters*\n`apply_filters('acfseo/show-heading-2', $show_h2);`\n- $show_h2 (bool) Control the presence of the second title. This filter allows you to hide it on specific pages, pages with specific teplates, sepcific post types...\n\nDefault `$show_h2` value is `true`.\n\n#### - `acfseo/heading-1-type`\n*Parameters*\n`apply_filters('acfseo/heading-1-type', $h1_type);`\n- $h1_type (string) Accepted values are `editor` and `text`. It will always fallback to `text`, which is default value.\n\n#### - `acfseo/admin/localized-script`\n*Parameters*\n`apply_filters('acfseo/admin/localized-script', $args);`\n- $args (array) The array which will be used for localizing `acfseoAdminLocalized` variable in the admin.\n\n#### - `acfseo/enqueue/admin-acfseo.js`\n*Parameters*\n`apply_filters('acfseo/enqueue/admin-acfseo.js', $args);`\n- $args (bool) Printing of the file `admin-acfseo.js` (script id is `acfseo/admin-acfif.js-js`). It also affects printing of the localized `acfseoAdminLocalized` variable.\n\n#### - `acfseo/seo-title/maxlength`\n*Parameters*\n`apply_filters('acfseo/seo-title/maxlength', $maxlength);`\n- $maxlength (int) Increases the `maxlength` for Seo Title field.\n\n#### - `acfseo/description/maxlength`\n*Parameters*\n`apply_filters('acfseo/description/maxlength', $maxlength);`\n- $maxlength (int) Increases the `maxlength` for Description field.\n\n#### - `acfseo/options-page/capability`\n*Parameters*\n`apply_filters('acfseo/options-page/capability', $args);`\n- $args (string) Change minimum user capability for options page.\n\n#### - `acfseo/options-page/parent-slug`\n*Parameters*\n`apply_filters('acfseo/options-page/parent-slug', $args);`\n- $args (string) Change parent slug for options page.\n\n---\n## Actions\n#### - `acfseo/init`\n- Fires on LEXO ACF SEO init.\n\n---\n## Changelog\nChangelog can be seen on [latest release](https://github.com/lexo-ch/acf-seo/releases/latest/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexo-ch%2Facf-seo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flexo-ch%2Facf-seo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexo-ch%2Facf-seo/lists"}