Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Custom element by Tag */
- (function ($) {
- $(document).ready(function () {
- let tag = window.location.pathname; // Get Tag Name by Slug
- tag = tag.split('/');
- const list_tag = ['web-design', 'typography']; // List of Tag
- if ( $.inArray( 'tag' , tag ) ) { // If Tag Archive
- list_tag.forEach(list => {
- if ( $.inArray( list , tag ) > 0 ) {
- // insert your code here
- console.log('ok');
- $('.jeg_archive_title').find('span').text('THIS TITLE'); // Example Change Title
- $('.site-title img.jeg_logo_img').remove(); // Example Remove Logo
- }
- });
- }
- });
- }(jQuery))
Add Comment
Please, Sign In to add comment