{"id":20760554,"url":"https://github.com/bigwing/bigwing-social","last_synced_at":"2026-04-21T11:37:27.956Z","repository":{"id":117431813,"uuid":"92091861","full_name":"bigwing/bigwing-social","owner":"bigwing","description":"Social icons for WordPress","archived":false,"fork":false,"pushed_at":"2018-11-27T22:20:12.000Z","size":64,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-12-25T23:37:08.174Z","etag":null,"topics":["wordpress-plugin"],"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/bigwing.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}},"created_at":"2017-05-22T19:30:48.000Z","updated_at":"2017-05-22T20:53:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"33f44383-f41f-4c4b-a548-facfe4a03e1c","html_url":"https://github.com/bigwing/bigwing-social","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/bigwing/bigwing-social","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigwing%2Fbigwing-social","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigwing%2Fbigwing-social/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigwing%2Fbigwing-social/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigwing%2Fbigwing-social/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bigwing","download_url":"https://codeload.github.com/bigwing/bigwing-social/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigwing%2Fbigwing-social/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32090554,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"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":["wordpress-plugin"],"created_at":"2024-11-17T10:14:19.553Z","updated_at":"2026-04-21T11:37:27.934Z","avatar_url":"https://github.com/bigwing.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BigWing Social for WordPress\n\nSocial icons for WordPress\n\n## Description \n\nBigWing Social allows you to use the built-in WordPress menu system to create social menus.\n\nThis plugin uses \u003ca href=\"https://github.com/Automattic/social-logos\"\u003eSocial Logos\u003c/a\u003e by \u003ca href=\"https://github.com/Automattic\"\u003eAutomattic\u003c/a\u003e.\n\n## Usage\n\n### Step 1. Create the menu\n\n![create-menu](https://cloud.githubusercontent.com/assets/636521/26325511/ca46e742-3efc-11e7-832e-7e8d8fab4137.gif)\n\n### Step 2. Add Social Items\n\n![add-items](https://cloud.githubusercontent.com/assets/636521/26325584/1c5215de-3efd-11e7-8751-6a91d986eb3a.gif)\n\n### Step 3. Assign Menu\n\n![assign-menu](https://cloud.githubusercontent.com/assets/636521/26325638/56489628-3efd-11e7-9475-37c2a7371d16.gif)\n\n### Step 4. Place the Menu via Code\n\nFind where in your theme you would like the menu to go and use:\n\n```php\nwp_nav_menu( \n\tarray( \n\t\t'theme_location' =\u003e 'bw-social',\n\t)\n);\n```\n\nWhere ```bw-social``` is the slug for the new social menu. \n\n### Step 5. Adjust Settings Using the Customizer\n\n![screen shot 2017-05-22 at 2 54 44 pm](https://cloud.githubusercontent.com/assets/636521/26325937/a108a4a4-3efe-11e7-8f5b-cc66586404b9.png)\n\nYou can adjust the:\n* Icon size\n* Icon color (using pre-configured colors or selecting a custom one)\n\n## Customization \n\nWhile this plugin tries to do the bulk of the hard work when it comes to social icons, there are things this plugin expects the themer to take care of:\n\n* List styles \n* Icon spacing\n* General look/appearance \n\n## Filters\n\n### bigwing/bigwing_social/icons\n\nFilter the icon URLs should you need to add your own:\n\n```php\n/**\n * Filter BW Social Icons.\n *\n * @since 1.0.0\n *\n * @param array $social_links_icons\n */\nadd_filter( 'bigwing/bigwing_social/icons', 'twentyten_bwsocial_icons' );\nfunction twentyten_bwsocial_icons( $icons ) {\n\t$icons[ 'fb.com' ] = 'facebook';\n\treturn $icons;\n}\n```\n\nIn the example above, we add ```fb.com``` and point it to use ```facebook```.\n\n### bigwing/bigwing_social/sprite\n\nProvide a custom SVG sprite to use:\n\n```php\n/**\n * Filter BW Social Icons Sprite.\n *\n * @since 1.0.0\n *\n * @param string Absolute directory path to SVG sprite\n */\nadd_filter( 'bigwing/bigwing_social/sprite', 'twentyten_bwsocial_sprite' );\nfunction twentyten_bwsocial_sprite( $sprite ) {\n\treturn '/path/to/sprite.svg';\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigwing%2Fbigwing-social","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbigwing%2Fbigwing-social","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigwing%2Fbigwing-social/lists"}