Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Theme/#397 og meta tags #398

Merged
merged 11 commits into from
Oct 1, 2018
Merged

Theme/#397 og meta tags #398

merged 11 commits into from
Oct 1, 2018

Conversation

coreymcollins
Copy link
Contributor

@coreymcollins coreymcollins commented Sep 27, 2018

Closes #397

DESCRIPTION

Added default OG tags, and a meta description tag, for sites who don't use Yoast to power social sharing cards.

First, we check to see if the WPSEO_Options class exists. If it does, Yoast is active so we bail as to not interfere with Yoast's setup.

This works as such:
First, we try to find our default card content which is:

  • Post content
  • Post title
  • Post permalink
  • Base description, which is either the provided site description in settings or a basic string
  • Article type, which defaults to article

Additionally, we grab the following for potential use later:

  • Logo from the Customizer which we set as the default image

If we're on a single post we:

  • Replace the default image with the featured image, if one exists

if we're on a single post which isn't the front page we:

  • Append the site name to the post title for the card title
  • Trim the post content for long and short cards

If we're on a category, tag, or custom taxonomy we:

  • Append the site name to the term name for the card title
  • Set the card description to be either categorized in or tagged with based on whether or not the term is explicitly a category
  • Set the card URL to the term link URL
  • Set the card type to website

If we're on search results we:

  • Append the site name to the search query for the card title
  • Set the card URL to the search results URL
  • Set the card type to website
  • Set a basic description for the search results for long and short descriptions

If we're on the home page we:

  • Get the title of the page_for_posts and append the site title for the card title
  • Get the permalink of the posts page for the card URL
  • Set the card type to website

If we're on the front page we:

  • Get the title of the page_on_front and append the site title for the card title
  • Get the home_url() for the card URL
  • Set the card type to website

If we're on a post type archive we:

  • Append the site name to the post type name for the card title
  • Set the post type archive URL as the card URL
  • Set the card type to website

SCREENSHOTS

Homepage tags:

Blog page tags:

Category tags:

Tag tags:

Single post tags:

Search results tags:

OTHER

  • Is this issue accessible? (Section 508/WCAG 2.0AA)
  • Does this issue pass all the linting? (PHPCS, ESLint, SassLint)
  • Does this pass CBT?

STEPS TO VERIFY

Check out the branch and poke around various pages, viewing the source and looking at the tags.

DOCUMENTATION

I don't think so? It should just be there and work (:crossed:), and not fall into place if Yoast is active, so I don't think we need to? But maybe. I could be under-thinking it since I'm familiar with it myself.

inc/hooks.php Outdated

$term_name = single_term_title( '', false );
$card_title = $term_name . ' - ' . $default_title;
$specify = is_category() ? __( 'categorized in', '_s' ) : __( 'tagged with', '_s' );
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@coreymcollins Please swap out all __(); with esc_html__(); By escaping, you prevent translators from injecting malicious code via the .pot file. Edge case for sure...

inc/hooks.php Outdated
global $post;

// Get the post content.
$post_content = $post ? $post->post_content : '';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@coreymcollins I have mixed feelings about this ternary. If there's no post content, we're going to set it to an empty string, and then run wp_strip_all_tags() on line 156? Maybe keep the ternary, and then check for content on line 156 first?

inc/hooks.php Outdated

// Get our custom logo URL. We'll use this on archives and when no featured image is found.
$logo_id = get_theme_mod( 'custom_logo' );
$logo_image = $logo_id ? wp_get_attachment_image_src( $logo_id, 'full' ) : '';
Copy link
Contributor

@gregrickaby gregrickaby Oct 1, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@coreymcollins Sorry to be so picky, but ternary operators should have a (). It's not explicitly mentioned in our PHP Code Standards, as well as WordPress Code Standards, but the ternary on this page does use a parenthesis. I would consider this a code smell issue, and not a pass/fail blocker.

@coreymcollins
Copy link
Contributor Author

Made the above noted updates – let me know if you spot anything else.

Thanks!

@coreymcollins
Copy link
Contributor Author

coreymcollins commented Oct 1, 2018

Made a couple more adjustments here, plus added a check for is_attachment() in a new conditional block so we can adjust the cards for attachments (media) if someone is viewing a single post for one of those.

Copy link
Contributor

@gregrickaby gregrickaby left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good! Thanks! 👍

@gregrickaby gregrickaby merged commit 910aece into master Oct 1, 2018
@gregrickaby gregrickaby deleted the theme/#397-og-meta-tags branch October 1, 2018 17:12
gregrickaby added a commit that referenced this pull request Oct 26, 2018
commit f377ae0
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 14:24:01 2018 -0500

    Theme/extras hooks cleanup (#430)

    * Removes our WDS placeholder function – placeholder.wdslab.com no longer appears to be a thing

    * Moves the header and footer script hooks into hooks since they’re hooks

    * Sets default width and height on the Unsplash template tag, otherwise it fails if no args are provided

    * Moves the ACF color picker filter into the ACF file since it’s ACF

    * Removes the commented out sidebars from our registration. We have one example on how to add a sidebar, I don’t think we need two commented out lines

    * Ignores the nonce verification PHPCS warnings on our debug mode checkers

commit a6403bc
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 14:20:49 2018 -0500

    Theme/#413 accordion block (#416)

    * Adds an accordion block and alphabetizes ACF field groups

    * Adds the beginnings of the accordion content block template

    * Fixes a typo in the field name

    * Adds the base accordion JS

    * Adjusts class names

    * Adds accordion styles

    * Compiles

    * Adjusts the accordion item IDs for multiple accordions on one page

    * Updates markup for better screen reading

    * Removes an extra div we probably don’t need

    * Updates a class name

    * Adjusts class names and removes unneeded styles

    * Compiles

    * Updates the button’s screen reader text

    * Tweaks block order

    * Adds intval to the $count variable

    * Adjusts JS (and styles to match) to only hide other opened accordions in the current block, not others, when opening one

    * Compiles

    * Changes the max-height value

    * Adds a no-js fallback

    * Compiles

    * Adds aria-expanded attributes to the accordion trigger buttons

    * Compiles

    * Adjusts button markup a bit and adds more aria attributes

    * Adjusts button styles for updated markup

    * Adjusts aria attribute settings for various conditions

    * Compiles

    * Fixes an alphabetical ordering issue

    * Adds/adjusts aria labels for accordion

    * Compiles

    * Adjusts some CSS transitions

    * Compiles

    * Adjusts no JS styles for the updated button markup to only hide the icon, not the full toggle (accordion heading)

    * Compiles

    * Removed Google+

    * Build 💻

    * Updated icomoon selection file to delete Google+ instance.

    * fixes typo, updated documentation to reflect function, and changes attribution.

    * Renames the function from icon to color

    * Fixes some weird “precision spacing” issues VS Code was throwing up

    * Fixes another typo from fiueld to field

    * Removes the panel removal of Nav Menus and Widgets, as this isn’t the way to do it (#420)

    * ♻️

commit e453fe9
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 14:11:09 2018 -0500

    Removes the panel removal of Nav Menus and Widgets, as this isn’t the way to do it (#420)

commit e50ef83
Merge: 1da8c2a 999ec11
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 11:21:43 2018 -0500

    Merge pull request #428 from WebDevStudios/hotfix/color_function_typo_fixes

    fixes typo, updated documentation to reflect function, and changes at…

commit 999ec11
Author: Corey Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 11:20:03 2018 -0500

    Fixes another typo from fiueld to field

commit abafb03
Author: Corey Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 11:16:30 2018 -0500

    Fixes some weird “precision spacing” issues VS Code was throwing up

commit 9b46d91
Author: Corey Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 11:14:09 2018 -0500

    Renames the function from icon to color

commit 97c4917
Author: jomurgel <dev@jomurgel.com>
Date:   Fri Oct 26 09:39:47 2018 -0600

    fixes typo, updated documentation to reflect function, and changes attribution.

commit 1da8c2a
Merge: d1be51d b0e420c
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Wed Oct 24 12:49:25 2018 -0400

    Merge pull request #418 from WebDevStudios/theme/#415-Remove-Google+

    Theme/#415 remove google+

commit b0e420c
Author: Muhammad Haris <isharis@gmail.com>
Date:   Wed Oct 24 18:21:00 2018 +0500

    Updated icomoon selection file to delete Google+ instance.

commit 391f5fc
Author: Muhammad Haris <isharis@gmail.com>
Date:   Wed Oct 24 00:31:09 2018 +0500

    Build 💻

commit e31eae1
Author: Muhammad Haris <isharis@gmail.com>
Date:   Wed Oct 24 00:29:32 2018 +0500

    Removed Google+

commit d1be51d
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 15:05:14 2018 -0400

    Theme/#408 remove inline styles (#409)

    * Adds a color picker field group

    * Replaces standard ACF color picker with our select color picker

    * Adds a function to set/get our color names

    * Replaces background and font color inline styles with classes

    * Renames “Block Options” field group to “Other Options” since that’s what it’s called in our block tabs

    * Replaces image inline styles with <figure> markup positioned similarly to our video “background”

    * Adjusts styles for video and image backgrounds

    * Removes references to inline styles in markup

    * Removes playsinline as it throws a 508 error

    * Adds missing quotation marks around link in hero

    * Compiles styles

    * Removes our ACF admin enqueues for color picker

    * Adjusts the color picker description and name

    * Adjusts inline comments

    * Sets the image and video as aria-hidden so screen readers don’t try to read them

    * Replaces translation functions

commit 4535426
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 14:32:58 2018 -0400

    Theme/general theme enhancements (#411)

    * Adds numeric pagination template tag

    * Replaces instances of the_post_navigation with new numeric pagination template tag

    * Removes the taxonomy name from the title of term archive pages

    * Fixes an equal sign alignment issue

    * Replaces <button> with <a> tag in CTA block

    * Checks for button text in the CTA button so we don’t potentially get an empty button

    * REplaces <button> with <a> tag in post card

    * Adds BG color transition

    * Sets a BG color transition on buttons globally

    * Sets opacity on links globally to use already-in-place link opacity transition

    * Compiles styles

    * Overrides a comment form button style

    * Condenses states for buttons

    * Compiles styles

commit 3455c40
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 10:08:46 2018 -0400

    Theme/move external css files (#407)

    * Moves normalize and animate stylesheets into the theme to avoid an extra external call

    * Compiles

commit be6da10
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 10:01:24 2018 -0400

    Theme/menu refinements (#410)

    * Moves the footer/mobile menu to a template tag

    * Adjusts output of menu and menu trigger in header

commit eb87d93
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 09:46:26 2018 -0400

    Replaces return with continue in expiration check (#404)

    * Replaces return with continue in expiration check

    * Removes the return comment from the doc block

commit bec21c3
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Mon Oct 1 12:13:21 2018 -0500

    Hotfix/#399 attribute spacing (#400)

    * Adjusts spacing for animation class to not end up with potentially empty space in attribute

    * Removes spaces at the end of inline styles so we don’t end up with an empty space at the end of the attribute

commit 910aece
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Mon Oct 1 12:12:34 2018 -0500

    Theme/#397 og meta tags (#398)

    * Adds a first pass at default OG tags

    * Updates for home and front page

    * Strips shortcodes from post content

    * Replaces __ with esc_html in strings

    * Checks for post content before stripping tags

    * Wraps ternary checks in parenteheses

    * Tweaks esc_html calls to esc_html__

    * Checks for singular before setting $post global

    * Updates a variable setting for long description on terms

    * Adds a check for attachment (media) singles

    * Simplifies the attachment card image conditional

commit 5ad134e
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Wed Sep 26 14:29:56 2018 -0500

    Replaces the <button> with an <input> to submit search results form (#395)

    * Replaces the <button> with an <input> to submit search results form

    * Adds a hyphen between searchsubmit to make it search-submit

    * Replaces/updates esc_attr strings

commit d3d7473
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Tue Sep 25 13:57:37 2018 -0500

    Updates ACF Block Defaults (#396)

    * Adds has-background classes for ACF blocks when color, image, or video are used

    * Swaps video class names for consistency

    * Changes z-index for video-background to -1 to sit behind content

    * Adjusts global block styles to keep video from breaking out of container

    * Adds a custom ID field to Other Options in global content blocks

    * Sets a default ID for content blocks and replaces it with the custom ID if one is set

    * Compiles styles

commit 8e15270
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Tue Sep 25 13:47:16 2018 -0500

    Adds filters to search post meta using default WP search (#393)

commit 4278c82
Author: Haris Zulfiqar <mharis@users.noreply.github.com>
Date:   Wed Sep 19 19:39:21 2018 +0500

    Fixes JS lint errors (#392)

commit a2dfc50
Author: Haris Zulfiqar <mharis@users.noreply.github.com>
Date:   Wed Sep 19 19:38:40 2018 +0500

    Hotfix/#387 css lint fixes (#390)

    * Remove empty rulesets

    * Added wp-block-button__link to class name format ignore

    * Compiled CSS

commit bc97fcb
Author: Haris Zulfiqar <mharis@users.noreply.github.com>
Date:   Wed Sep 19 19:37:59 2018 +0500

    PHPCS Warnings and Error Fixes (#388)
gregrickaby added a commit that referenced this pull request Oct 26, 2018
commit f377ae0
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 14:24:01 2018 -0500

    Theme/extras hooks cleanup (#430)

    * Removes our WDS placeholder function – placeholder.wdslab.com no longer appears to be a thing

    * Moves the header and footer script hooks into hooks since they’re hooks

    * Sets default width and height on the Unsplash template tag, otherwise it fails if no args are provided

    * Moves the ACF color picker filter into the ACF file since it’s ACF

    * Removes the commented out sidebars from our registration. We have one example on how to add a sidebar, I don’t think we need two commented out lines

    * Ignores the nonce verification PHPCS warnings on our debug mode checkers

commit a6403bc
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 14:20:49 2018 -0500

    Theme/#413 accordion block (#416)

    * Adds an accordion block and alphabetizes ACF field groups

    * Adds the beginnings of the accordion content block template

    * Fixes a typo in the field name

    * Adds the base accordion JS

    * Adjusts class names

    * Adds accordion styles

    * Compiles

    * Adjusts the accordion item IDs for multiple accordions on one page

    * Updates markup for better screen reading

    * Removes an extra div we probably don’t need

    * Updates a class name

    * Adjusts class names and removes unneeded styles

    * Compiles

    * Updates the button’s screen reader text

    * Tweaks block order

    * Adds intval to the $count variable

    * Adjusts JS (and styles to match) to only hide other opened accordions in the current block, not others, when opening one

    * Compiles

    * Changes the max-height value

    * Adds a no-js fallback

    * Compiles

    * Adds aria-expanded attributes to the accordion trigger buttons

    * Compiles

    * Adjusts button markup a bit and adds more aria attributes

    * Adjusts button styles for updated markup

    * Adjusts aria attribute settings for various conditions

    * Compiles

    * Fixes an alphabetical ordering issue

    * Adds/adjusts aria labels for accordion

    * Compiles

    * Adjusts some CSS transitions

    * Compiles

    * Adjusts no JS styles for the updated button markup to only hide the icon, not the full toggle (accordion heading)

    * Compiles

    * Removed Google+

    * Build 💻

    * Updated icomoon selection file to delete Google+ instance.

    * fixes typo, updated documentation to reflect function, and changes attribution.

    * Renames the function from icon to color

    * Fixes some weird “precision spacing” issues VS Code was throwing up

    * Fixes another typo from fiueld to field

    * Removes the panel removal of Nav Menus and Widgets, as this isn’t the way to do it (#420)

    * ♻️

commit e453fe9
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 14:11:09 2018 -0500

    Removes the panel removal of Nav Menus and Widgets, as this isn’t the way to do it (#420)

commit e50ef83
Merge: 1da8c2a 999ec11
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 11:21:43 2018 -0500

    Merge pull request #428 from WebDevStudios/hotfix/color_function_typo_fixes

    fixes typo, updated documentation to reflect function, and changes at…

commit 999ec11
Author: Corey Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 11:20:03 2018 -0500

    Fixes another typo from fiueld to field

commit abafb03
Author: Corey Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 11:16:30 2018 -0500

    Fixes some weird “precision spacing” issues VS Code was throwing up

commit 9b46d91
Author: Corey Collins <coreymcollins@gmail.com>
Date:   Fri Oct 26 11:14:09 2018 -0500

    Renames the function from icon to color

commit 97c4917
Author: jomurgel <dev@jomurgel.com>
Date:   Fri Oct 26 09:39:47 2018 -0600

    fixes typo, updated documentation to reflect function, and changes attribution.

commit 1da8c2a
Merge: d1be51d b0e420c
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Wed Oct 24 12:49:25 2018 -0400

    Merge pull request #418 from WebDevStudios/theme/#415-Remove-Google+

    Theme/#415 remove google+

commit b0e420c
Author: Muhammad Haris <isharis@gmail.com>
Date:   Wed Oct 24 18:21:00 2018 +0500

    Updated icomoon selection file to delete Google+ instance.

commit 391f5fc
Author: Muhammad Haris <isharis@gmail.com>
Date:   Wed Oct 24 00:31:09 2018 +0500

    Build 💻

commit e31eae1
Author: Muhammad Haris <isharis@gmail.com>
Date:   Wed Oct 24 00:29:32 2018 +0500

    Removed Google+

commit d1be51d
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 15:05:14 2018 -0400

    Theme/#408 remove inline styles (#409)

    * Adds a color picker field group

    * Replaces standard ACF color picker with our select color picker

    * Adds a function to set/get our color names

    * Replaces background and font color inline styles with classes

    * Renames “Block Options” field group to “Other Options” since that’s what it’s called in our block tabs

    * Replaces image inline styles with <figure> markup positioned similarly to our video “background”

    * Adjusts styles for video and image backgrounds

    * Removes references to inline styles in markup

    * Removes playsinline as it throws a 508 error

    * Adds missing quotation marks around link in hero

    * Compiles styles

    * Removes our ACF admin enqueues for color picker

    * Adjusts the color picker description and name

    * Adjusts inline comments

    * Sets the image and video as aria-hidden so screen readers don’t try to read them

    * Replaces translation functions

commit 4535426
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 14:32:58 2018 -0400

    Theme/general theme enhancements (#411)

    * Adds numeric pagination template tag

    * Replaces instances of the_post_navigation with new numeric pagination template tag

    * Removes the taxonomy name from the title of term archive pages

    * Fixes an equal sign alignment issue

    * Replaces <button> with <a> tag in CTA block

    * Checks for button text in the CTA button so we don’t potentially get an empty button

    * REplaces <button> with <a> tag in post card

    * Adds BG color transition

    * Sets a BG color transition on buttons globally

    * Sets opacity on links globally to use already-in-place link opacity transition

    * Compiles styles

    * Overrides a comment form button style

    * Condenses states for buttons

    * Compiles styles

commit 3455c40
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 10:08:46 2018 -0400

    Theme/move external css files (#407)

    * Moves normalize and animate stylesheets into the theme to avoid an extra external call

    * Compiles

commit be6da10
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 10:01:24 2018 -0400

    Theme/menu refinements (#410)

    * Moves the footer/mobile menu to a template tag

    * Adjusts output of menu and menu trigger in header

commit eb87d93
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Fri Oct 19 09:46:26 2018 -0400

    Replaces return with continue in expiration check (#404)

    * Replaces return with continue in expiration check

    * Removes the return comment from the doc block

commit bec21c3
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Mon Oct 1 12:13:21 2018 -0500

    Hotfix/#399 attribute spacing (#400)

    * Adjusts spacing for animation class to not end up with potentially empty space in attribute

    * Removes spaces at the end of inline styles so we don’t end up with an empty space at the end of the attribute

commit 910aece
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Mon Oct 1 12:12:34 2018 -0500

    Theme/#397 og meta tags (#398)

    * Adds a first pass at default OG tags

    * Updates for home and front page

    * Strips shortcodes from post content

    * Replaces __ with esc_html in strings

    * Checks for post content before stripping tags

    * Wraps ternary checks in parenteheses

    * Tweaks esc_html calls to esc_html__

    * Checks for singular before setting $post global

    * Updates a variable setting for long description on terms

    * Adds a check for attachment (media) singles

    * Simplifies the attachment card image conditional

commit 5ad134e
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Wed Sep 26 14:29:56 2018 -0500

    Replaces the <button> with an <input> to submit search results form (#395)

    * Replaces the <button> with an <input> to submit search results form

    * Adds a hyphen between searchsubmit to make it search-submit

    * Replaces/updates esc_attr strings

commit d3d7473
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Tue Sep 25 13:57:37 2018 -0500

    Updates ACF Block Defaults (#396)

    * Adds has-background classes for ACF blocks when color, image, or video are used

    * Swaps video class names for consistency

    * Changes z-index for video-background to -1 to sit behind content

    * Adjusts global block styles to keep video from breaking out of container

    * Adds a custom ID field to Other Options in global content blocks

    * Sets a default ID for content blocks and replaces it with the custom ID if one is set

    * Compiles styles

commit 8e15270
Author: Corey M Collins <coreymcollins@gmail.com>
Date:   Tue Sep 25 13:47:16 2018 -0500

    Adds filters to search post meta using default WP search (#393)

commit 4278c82
Author: Haris Zulfiqar <mharis@users.noreply.github.com>
Date:   Wed Sep 19 19:39:21 2018 +0500

    Fixes JS lint errors (#392)

commit a2dfc50
Author: Haris Zulfiqar <mharis@users.noreply.github.com>
Date:   Wed Sep 19 19:38:40 2018 +0500

    Hotfix/#387 css lint fixes (#390)

    * Remove empty rulesets

    * Added wp-block-button__link to class name format ignore

    * Compiled CSS

commit bc97fcb
Author: Haris Zulfiqar <mharis@users.noreply.github.com>
Date:   Wed Sep 19 19:37:59 2018 +0500

    PHPCS Warnings and Error Fixes (#388)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants