Let's say you're selecting a DOM element like list items.
Option #1, use a spread:
const items = [... document.querySelectorAll('li')];
Option #2, use Array.from:
| <?php | |
| /** | |
| * Template Name: Image and Gallery Posts | |
| * Descriptions: Displays all image and gallery post formats. | |
| * | |
| * @package Portfolio Press | |
| */ | |
| get_header(); ?> |
| // Init Scroll Reveal | |
| initScrollReveal: function() { | |
| window.scrollreveal = ScrollReveal(); | |
| $('[data-animation]').each( function() { | |
| var settings = { | |
| 'origin' : 'bottom', | |
| 'distance' : '0', |
| 'use strict'; | |
| // Packages | |
| const fiberLibrary = require('fibers'); | |
| const sassLibrary = require('node-sass'); | |
| module.exports = function(grunt) { | |
| // load all tasks | |
| require('load-grunt-tasks')(grunt, {scope: 'devDependencies'}); |
| <?php | |
| function devinsays_append_query_strings( $url ) { | |
| error_log('inital url'); | |
| error_log($url); | |
| // If no cookie set, return. | |
| if ( ! isset( $_COOKIE['affwp_ref'] ) ) { | |
| return $url; | |
| } |
Let's say you're selecting a DOM element like list items.
Option #1, use a spread:
const items = [... document.querySelectorAll('li')];
Option #2, use Array.from:
While importing data into a local MySQL database in Laravel I hit this issue:
PDOException::("SQLSTATE[22007]: Invalid datetime format: 1292 Incorrect datetime value: '2018-03-11 02:04:15' for column 'created_at' at row 825")
The problem is due to daylight savings time (DST). In OSX MySQL is generally set to use SYSTEM time rather than UTC.
So, in my case, the issue was that datetime 2018-03-11 02:04:15 technically did not exist in CST.
Hi. After reviewing your site again I see that you are using a custom content type (portfolio) for the content, which is why it doesn't show up on the home page like standard posts.
You could try setting a static page as the home page and using the [portfolio] shortcode as described here: https://en.support.wordpress.com/portfolios/. However, the layout won't be the same as the standard posts.
Another option is to try another theme mentioned in that help doc that has specific portfolio content type support. These may provide better layout options for you.
Apologies for the delayed response. I typed out this whole message to you at once before, but it looks like it never finished posting.
Cheers!
| order deny,allow | |
| deny from all | |
| allow from 98.6.000.111 | |
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f |
| /* Menu text color and background color */ | |
| #navigation ul a, | |
| #navigation .menu-toggle { | |
| color: #333; | |
| background: #f9f9f9; | |
| } | |
| /* Toggle menu on mobile needs padding if container background is white */ | |
| #navigation ul a, | |
| #navigation .menu-toggle { |
| <?php | |
| /** | |
| * Load javascripts used by the theme | |
| */ | |
| function custom_theme_js() { | |
| wp_register_script( | |
| 'infinite_scroll', | |
| get_template_directory_uri() . '/js/infinite-scroll.pkgd.min.js', | |
| array('jquery') | |
| null, |