{"id":21258575,"url":"https://github.com/ubc/custom-css","last_synced_at":"2026-02-17T17:01:55.744Z","repository":{"id":73729520,"uuid":"11726386","full_name":"ubc/custom-css","owner":"ubc","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-21T18:38:03.000Z","size":3561,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-10-06T03:01:45.831Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ubc.png","metadata":{"files":{"readme":"readme.txt","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}},"created_at":"2013-07-28T21:53:31.000Z","updated_at":"2025-01-21T18:38:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"5e7b13cd-4159-4fa7-99a5-31db9ef4c8ff","html_url":"https://github.com/ubc/custom-css","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ubc/custom-css","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubc%2Fcustom-css","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubc%2Fcustom-css/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubc%2Fcustom-css/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubc%2Fcustom-css/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ubc","download_url":"https://codeload.github.com/ubc/custom-css/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubc%2Fcustom-css/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29550819,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T14:33:00.708Z","status":"ssl_error","status_checked_at":"2026-02-17T14:32:58.657Z","response_time":100,"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":[],"created_at":"2024-11-21T04:09:43.467Z","updated_at":"2026-02-17T17:01:55.718Z","avatar_url":"https://github.com/ubc.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"=== Improved Simpler CSS ===\nContributors: enej, ctlt-dev, oltdev\nTags: css, wpmu, appearance, themes, custom css, edit css, live edit css, revisions css, custom post type\nRequires at least: 3.0\nTested up to: 3.1.2\n\n\n\nAdd the ability to add css to your existing style sheet. \n\n== Description ==\n\nThis Simpler CSS mu-plugin allows WordPress multisite hosts to enable users to add custom stylesheets to their blogs.\n\nThe plugin creates a new menu item under the Appearance menu in WordPress 2.7\nthat allows users to enter custom CSS code that will be injected into the\n`\u003chead\u003e` section of their blog. The CSS is stored in the blog's options table\nand is filtered through a standard PHP function before being outputted, preventing\nthe user from inserting malicious code into the header.\n\nFor non-WordPress µ blogs, this plugin provides an easy way to modify the appearance of installed\nthemes or plugins (such as Sociable) without modifying theme/plugin files that may change\nwith upgrades. No write access is required to any files for Simpler CSS to function, as it stores\nits data in the database's options table — and that means theme/plugin upgrades won't impact\nyour custom CSS.\n   \nThe custom CSS will only show when the theme has the necessary `wp_header()` function\nin the `\u003chead\u003e` section, as most themes now do.\n\nProps go to Jeremiah Orem  and Frederick D. who plugin this one is based on. \n\n== Installation ==\n= For WordPress µ =\n1. Upload the `simpler-css.php` file to the `/wp-content/mu-plugins/` directory. The other files\nshould not be uploaded, and the file cannot be in a subdirectory.\n2. You're done! As a mu-plugin, Simpler CSS is automatically enabled for all blogs.\n= For normal WordPress installations =\n1. Upload the `simpler-css` directory to the `/wp-content/plugins/` directory.\n2. Activate the plugin through the 'Plugins' menu in WordPress.\n\n== Frequently Asked Questions ==\n\n= Why isn't the code showing up on the blog? =\nRemember that this plugin depends on standard WordPress hooks to operate. If the\nactive theme does not have `wp_header()` in its code, this plugin is ineffective.\n*Remedy:* add the code `\u003c?php wp_header(); ?\u003e` to the theme files in the `\u003chead\u003e` section.\n\n= Why can't I add JavaScript to the blog's code? =\nThis plugin will only operate for Cascading Style Sheets code. The custom CSS is escaped\nand outputted within a set of `\u003cstyle\u003e` tags, preventing bots from abusing the functionality\nto inject malicious code. Allowing users to inject JavaScript into the blog's header\nis a security vulnerability, thus this plugin does not permit it.\n\n= Why isn't my CSS showing as it should be? =\nCheck first of all to make sure that your custom CSS *does not* include the opening `\u003cstyle type=\"text/css\"\u003e`\nand closing `\u003c/style\u003e` HTML tags. These tags are outputted automatically, and including\nthem manually in your CSS code could lead to malfunctions.\n\n== Screenshots ==\n1. The menu item as it appears under the Appearance menu.\n2. Live Edit CSS\n3. OLD Edit Screen \n4. Revisions Screen \n\n== Changelog ==\n\n= 2.0.2 =\nMinor bug fixes\n\n= 2 = \nCompletely rewritten \n\n\n= 1.0 = \n* custom css stored in post tabe as a content type\n* custom css revisions are enabled\n* improved custom css  ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fubc%2Fcustom-css","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fubc%2Fcustom-css","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fubc%2Fcustom-css/lists"}