Skip to content

Latest commit

 

History

History

Blog Page Post Excerpt Element

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Blog Page Post Excerpt Element

Synopsis

Create a blog page post excerpt element.

Version

  • 0.1.0

SS Versions

v7.1 Fluid Engine Compatible

  • Not Applicable

Dependencies


Install

  • Install Elements Manipulate. After you install the code be sure to continue on with the rest of the steps.

  • In the elements manipulate code add the following data structure per that codes instructions.

        "head meta[ name=\"description\" ]" : {
        
          "selectorDestination" : ".blog-item-top-wrapper",
          
          // action value is after, append, before, prepend or replace
          
          "action" : "append",
          
          // selectorParentDestination is optional, use when you want to first
          // find a selector destination but then work up the ancestor hierarchy
          // to manipulate it
          
          "selectorParentDestination" : "[ enter selector parent destination here between double quotes replacing square brackets ]",
          
          // sourceCopy when true will make a copy of the source element and use
          // it instead of the actual selectorSource. value is false or true
          
          "sourceCopy" : false,
          
          // callback is optional, use when you want to manipulate the structure
          // of the source element. replace undefined with the name of your custom
          // function
          //
          // your callback must accept and return a JavaScript object
          
          "callback" : "twcBlogPagePostExcerptElement"
          
          },
          
    
  • Options

Make a Donation

Please consider making a donation.

Changes

  • 2024-08-22

    • initial version