{"id":26863027,"url":"https://github.com/jwill9999/wp_glorious","last_synced_at":"2026-04-10T22:44:53.576Z","repository":{"id":127600792,"uuid":"117396522","full_name":"jwill9999/wp_glorious","owner":"jwill9999","description":"WordPress theme","archived":false,"fork":false,"pushed_at":"2018-01-14T02:53:05.000Z","size":8912,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-13T02:02:40.127Z","etag":null,"topics":["bootstrap3","php","theme","wordpress"],"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/jwill9999.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}},"created_at":"2018-01-14T02:50:11.000Z","updated_at":"2018-07-13T00:48:39.000Z","dependencies_parsed_at":"2023-08-16T22:02:51.852Z","dependency_job_id":null,"html_url":"https://github.com/jwill9999/wp_glorious","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jwill9999/wp_glorious","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fwp_glorious","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fwp_glorious/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fwp_glorious/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fwp_glorious/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jwill9999","download_url":"https://codeload.github.com/jwill9999/wp_glorious/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwill9999%2Fwp_glorious/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270108508,"owners_count":24528762,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bootstrap3","php","theme","wordpress"],"created_at":"2025-03-31T02:39:24.492Z","updated_at":"2026-04-10T22:44:48.540Z","avatar_url":"https://github.com/jwill9999.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Wordpress Example Starter Code\n\n```\n\u003e git clone\n\u003e cd\n\u003e add code to htdocs folder\n\u003e start Apache Server\n\u003e open localhost for development\n```\n\n## Project View\n\n![](./assets/img/previewb.png)\n![](./assets/img/previewa.png)\n\n### Key Features\n\n\u003e Enqueue Scripts for js and css\n\n\u003e Custom Menus\n\n\u003e Post Loop\n\n\u003e Custom and specialized page templates\n\n\u003e Add Theme Support\n\n\u003e Create Post Formats\n\n\u003e Sidebars and Widgets\n\n\u003e Query Posts with WP_Query\n\n\u003e Comments Template\n\n\u003e HTML5 addition to forms\n\n\u003e Custom search bar using bootstrap\n\n\u003e Walker Class for Bootstrap menu\n\n\u003e Outputing Blog Info\n\n\u003e Custom Post Types\n\n\u003e Pagination\n\n## Links\n\n[Wordpress Developers Handbook](https://developer.wordpress.org/themes/)\n\n[Wordpress Loop](https://developer.wordpress.org/themes/basics/the-loop/)\n\n```php\n\u003c?php if ( have_posts() ) : ?\u003e\n    \u003c?php while ( have_posts() ) : the_post(); ?\u003e\n        ... Display post content\n    \u003c?php endwhile; ?\u003e\n\u003c?php endif; ?\u003e\n```\n\n#### The loop can display\n\n\u003e **next_post_link()** – a link to the post published chronologically after the current post\n\n\u003e **previous_post_link()** – a link to the post published chronologically before the current post\n\n\u003e **the_category()** – the category or categories associated with the post or page being viewed\n\n\u003e **the_author()** – the author of the post or page\n\n\u003e **the_content()** – the main content for a post or page\n\n\u003e **the_excerpt()** – the first 55 words of a post’s main content followed by an ellipsis (…) or read more link that goes to the full post. You may also use the “Excerpt” field of a post to customize the length of a particular excerpt.\n\n\u003e **the_ID()** – the ID for the post or page\n\n\u003e **the_meta()** – the custom fields associated with the post or page\n\n\u003e **the_shortlink()** – a link to the page or post using the url of the site and the ID of the post or page\n\n\u003e **the_tags()** – the tag or tags associated with the post\n\n\u003e **the_title()** – the title of the post or page\n\n\u003e **the_time()** – the time or date for the post or page. This can be customized using standard php date function formatting.\n\n#### Conditional tags\n\n\u003e **is_home()** – Returns true if the current page is the homepage\n\n\u003e **is_admin()** – Returns true if inside Administration Screen, false otherwise\n\n\u003e **is_single()** – Returns true if the page is currently displaying a single post\n\n\u003e **is_page()** – Returns true if the page is currently displaying a single page\n\n\u003e **is_page_template()** – Can be used to determine if a page is using a specific template, for example: is_page_template('about-page.php')\n\n\u003e **is_category()** – Returns true if page or post has the specified category, for example: is_category('news')\n\n\u003e **is_tag()** – Returns true if a page or post has the specified tag\n\n\u003e **is_author()** – Returns true if inside author’s archive page\n\n\u003e **is_search()** – Returns true if the current page is a search results page\n\n\u003e **is_404()** – Returns true if the current page does not exist\n\n\u003e **has_excerpt()** – Returns true if the post or page has an excerpt\n\n## Example Loops\n\n### Blog\n\n```php\n\u003c?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?\u003e\n\n        \u003ch2\u003e\u003c?php the_title(); ?\u003e\u003c/h2\u003e\n    \u003c?php the_post_thumbnail(); ?\u003e\n    \u003c?php the_excerpt(); ?\u003e\n\u003c?php endwhile; else: ?\u003e\n    \u003c?php _e( 'Sorry, no posts matched your criteria.', 'textdomain' ); ?\u003e\n\u003c?php endif; ?\u003e\n```\n\n### Conditional loop\n\n```php\n// Start the Loop.\n\u003c?php if ( have_posts() ) : while ( have_posts() ) : the_post();\n/* * See if the current post is in category 3.\n   * If it is, the div is given the CSS class \"post-category-three\".\n   * Otherwise, the div is given the CSS class \"post\".\n*/\nif ( in_category( 3 ) ) : ?\u003e\n\n\u003cdiv class=\"post-category-three\"\u003e\n    \u003c?php else : ?\u003e\n\u003cdiv class=\"post\"\u003e\n    \u003c?php endif; ?\u003e\n\n        // Display the post's title.\n        \u003ch2\u003e\u003c?php the_title() ?\u003e\u003c/h2\u003e\n\n        // Display a link to other posts by this posts author.\n        \u003csmall\u003e\u003c?php _e( 'Posted by ', 'textdomain' ); the_author_posts_link() ?\u003e\u003c/small\u003e\n\n        // Display the post's content in a div.\n        \u003cdiv class=\"entry\"\u003e\n            \u003c?php the_content() ?\u003e\n        \u003c/div\u003e\n\n        // Display a comma separated list of the post's categories.\n        \u003c?php _e( 'Posted in ', 'textdomain' ); the_category( ', ' ); ?\u003e\n\n    // closes the first div box with the class of \"post\" or \"post-cat-three\"\n    \u003c/div\u003e\n\n// Stop the Loop, but allow for a \"if not posts\" situation\n\u003c?php endwhile; else :\n/*\n * The very first \"if\" tested to see if there were any posts to\n * display. This \"else\" part tells what do if there weren't any.\n */\n_e( 'Sorry, no posts matched your criteria.', 'textdomain' );\n // Completely stop the Loop.\n endif;\n?\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwill9999%2Fwp_glorious","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjwill9999%2Fwp_glorious","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwill9999%2Fwp_glorious/lists"}