Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/horttcore/wp-content-width

Setting the global WordPress variable `$content_width` in a single place for php and css
https://github.com/horttcore/wp-content-width

composer package wordpress

Last synced: 15 days ago
JSON representation

Setting the global WordPress variable `$content_width` in a single place for php and css

Awesome Lists containing this project

README

        

# Content Width

Setting the global WordPress variable `$content_width` in a single place for php and css

## Installation

`$ composer require ralfhortt/wp-content-width`

## Usage

```php
register();
```

```css
.container {
margin-left: auto;
margin-right: auto;
max-width: var(--content-width);
width: 100%;
}
```