Titel aanpassen archive page

function custom_category_title( $title ) { $title = str_replace( 'Archieven', 'Mijn gewenste titel', $title ); return $title;…

MemberPress: Changes Product Image on the Checkout Page

This code snippet changes the product image on the checkout page in MemberPress. By default, MemberPress…

wordpress on-page confirmation message

.wpforms-confirmation-container-full { color: #D2A336; margin: 0 0 24px 0; background: #000000; border: 1px solid #D2A336; padding:…

Contato

Entre em contato conosco, sugira, elogie, corrija, reclame

Replace [year] with the current year

Type [year] anywhere that you want the current year to be inserted.

om-reactv4.js

// Using React Router V4 import React from "react"; import { withRouter } from "react-router"; class…

om-reactv3.js

// Using React Router V3 import { browserHistory } from 'react-router'; class App extends React.component {…

om-nextjs.js

import { useEffect } from 'react'; import { useRouter } from 'next/router'; const OptinMonsterEmbed = ()…

webfontloader.js

// Add custom scripts function add_custom_script_webfont_loader_js() { wp_register_script( 'webfontloader', 'https://cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js', array(), '1.6.28', true ); wp_enqueue_script( 'webfontloader'…

add post formats

Adding different types of post formats: aside – Typically styled without a title. Similar to a…

Adds URL to pages window

add_filter('manage_page_posts_columns', 'my_custom_column', 10); add_action('manage_page_posts_custom_column', 'add_my_custom_column', 10, 2); function my_custom_column($defaults) { $defaults['url'] = 'URL'; return $defaults; }…

1 51 52 53 54 55 170