{"id":23241137,"url":"https://github.com/widilo/widilocats4pages","last_synced_at":"2026-04-29T10:33:37.848Z","repository":{"id":203584175,"uuid":"321480257","full_name":"widilo/widiloCats4Pages","owner":"widilo","description":"widilo®Cats4Pages Plugin for WordPress - Add tags and categories to WordPress Pages with ease. Cats4Pages WP Plugin Tutorial: https://shop.widilo.de/so-fuegst-du-schlagwoerter-kategorien-zu-deinen-wordpress-seiten-hinzu/","archived":false,"fork":false,"pushed_at":"2022-10-02T22:59:03.000Z","size":218,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-02T20:38:11.620Z","etag":null,"topics":["categories","plugins","tags","widilo","wordpress","wordpress-plugin","wordpress-site"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/widilo.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2020-12-14T21:43:50.000Z","updated_at":"2023-09-08T18:15:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"bea48f8c-292e-4b00-9c36-e6665a62bf5a","html_url":"https://github.com/widilo/widiloCats4Pages","commit_stats":null,"previous_names":["widilo/widilocats4pages"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/widilo/widiloCats4Pages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/widilo%2FwidiloCats4Pages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/widilo%2FwidiloCats4Pages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/widilo%2FwidiloCats4Pages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/widilo%2FwidiloCats4Pages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/widilo","download_url":"https://codeload.github.com/widilo/widiloCats4Pages/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/widilo%2FwidiloCats4Pages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32421867,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T06:29:02.080Z","status":"ssl_error","status_checked_at":"2026-04-29T06:29:00.631Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["categories","plugins","tags","widilo","wordpress","wordpress-plugin","wordpress-site"],"created_at":"2024-12-19T05:15:29.328Z","updated_at":"2026-04-29T10:33:37.830Z","avatar_url":"https://github.com/widilo.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# widiloCats4Pages - Plugin for WordPress\n\n### Add tags and categories to WordPress Pages with ease.\n\nHave you created your website with WordPress? Then you will have noticed that you can only add categories and keywords to your posts, but not to your pages. Unfortunately, the CMS WordPress does not provide for adding categories and keywords to pages. With a view to good usability, an orderly structure of your website, thematic search functions or SEO, it makes perfect sense to categorize pages as well as articles and to provide them with tags or keywords.\nIf you want to add categories and keywords to your WordPress pages, you can use this small code snippet or our free plugin for WordPress.\n\nIf you are familiar with PHP and the creation and editing of WordPress themes, you can add the following code snippet to your functions.php. Please note, however, that the code snippet will be overwritten as soon as your theme receives an update.\n\n**To implement the snippet permanently in your functions.php, you should create a child theme with an unchangeable functions.php.**\n\nAdd this code snippet at the end of your functions.php:\n\n```\n/*\nwidilo®Cats4Pages // add tags and categories to WordPress pages\n@see https://widilo.de\n@since 1.0.0\n*/\nfunction widilo_add_cats_to_pages() {\nregister_taxonomy_for_object_type( 'post_tag', 'page' );\nregister_taxonomy_for_object_type( 'category', 'page' );\n}\nadd_action( 'init', 'widilo_add_cats_to_pages' );\n\n/*\nwidilo®Cats4Pages // include all tags and categories in wp_query\n@see https://widilo.de\n@since 1.0.1\n*/\nfunction widilo_add_cats_to_pages_query($wp_query) {\nif ($wp_query-\u003eget('tag')) $wp_query-\u003eset('post_type', 'any');\nif ($wp_query-\u003eget('category_name')) $wp_query-\u003eset('post_type', 'any');\n}\nadd_action('pre_get_posts', 'widilo_add_cats_to_pages_query');\n```\nAfter you have saved the changes in the functions.php, you will see two new columns in your WordPress page overview: Categories and Keywords:\n\n![widiloCats4Pages Plugin for WordPress](https://github.com/widilo/widiloCats4Pages/blob/main/widiloCats4Pages-Screenshot.png)\n\n## Download our latest plugin release: widilo®Cats4Pages v1.0.1\n\nIf you are not very familiar with PHP or changing WordPress themes or creating child themes, we provide you the latest release of widilo®Cats4Pages, Version 1.0.1, for download here: https://github.com/widilo/widiloCats4Pages/releases/tag/widiloCats4pages-v.1.0.1 \n\n## Description / Installation\n\n=== Plugin Name === \u003cbr\u003e\nAuthor: https://muennecke-vollmers.de \u003cbr\u003e\nTags: categories, tags, pages \u003cbr\u003e\nRequires at least: 4.5 \u003cbr\u003e\nTested up to: 6.0.2 \u003cbr\u003e\nStable tag: 4.5 \u003cbr\u003e\nVersion: 1.0.1 \u003cbr\u003e\nLicense: GPLv2 or later \u003cbr\u003e\nLicense URI: http://www.gnu.org/licenses/gpl-2.0.html \u003cbr\u003e\u003cbr\u003e\n\n(c) 2020-2022 Münnecke \u0026 Vollmers GbR, widilo® \u003cbr\u003e\n\n== Description ==\n\nwidilo®Cats4Pages adds tags and categories to WordPress pages. You only have to activate the plugin to enable categories and tags to pages.\n\n== Installation ==\n\nHow to install the widilo®Cats4Pages WordPress plugin and get it working:\n\nVia SFTP:\n\n1. Upload `widilo-cats4pages.zip` to the `/wp-content/plugins/` directory\n2. Activate the plugin through the 'Plugins' menu in WordPress\n3. That's all!\n\nInstall widilo®Cats4Pages using the WordPress Admin Plugin Upload:\n\n1. Go to the WordPress admin area and visit **Plugins** =\u003e **Add New**.\n2. Click on the **Upload Plugin** button on top of the page.\n3. Click on the **Choose File** button and select the plugin file **widilo®Cats4Pages.zip**\n4. After you've selected the file, you need to click on the **Install Now** button.\n5. You will see a success message after the installation is finished.\n6. Once installed, you need to click on **Activate Plugin**. That's all!\n\n: )\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwidilo%2Fwidilocats4pages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwidilo%2Fwidilocats4pages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwidilo%2Fwidilocats4pages/lists"}