The image to apply the filter.
You can find it here: https://drive.google.com/file/d/1pr4Sih1vFw_Smqm1c86QFgT2nGO0O3gf/view?usp=sharing
You should ulpad it on this path yourtheme/assets/images/clut.jpg.
The image to apply the filter.
You can find it here: https://drive.google.com/file/d/1pr4Sih1vFw_Smqm1c86QFgT2nGO0O3gf/view?usp=sharing
You should ulpad it on this path yourtheme/assets/images/clut.jpg.
| import React, { Component } from "react"; | |
| import { getFirstAndSecondAction } from "actions/getFirstAndSecondAction"; | |
| class MyComponent extends Component { | |
| static async getInitialProps({ store }) { | |
| // Trigger the saga sequence | |
| store.dispatch(getFirstAndSecondAction()); | |
| return {}; |
| <?php if (have_posts()): ?> | |
| <ul id="image-data-list"> | |
| <?php while(have_posts()): the_post(); ?> | |
| <li data-image-url="<?= your_post_image_url ?>"></li> | |
| <?php endwhile; ?> | |
| </ul> | |
| <?php endif; ?> |
A plugin to enable Relevanssi research through WP_GraphQL.
This plugin requires Relevanssi >= 4.6.0 and WP_GraphQL >= 0.8.0.
| const express = require('express'); | |
| const next = require('next'); | |
| const sm = require('sitemap'); | |
| const axios = require('axios'); | |
| const port = parseInt(process.env.PORT, 10) || 3000; | |
| const dev = process.env.NODE_ENV !== 'production'; | |
| const app = next({ dev }); | |
| const handle = app.getRequestHandler(); |