html post list shortcode

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #25192
    Stefacchio
    Participant

    Hello, wehere is html code of [category_posts..] shortcode?
    I would change style of data and category items and I would change format data to italian data

    thanks
    regards

    #25215
    Veena
    Moderator

    You can modify the date format in file framework/functions/post-functions.php inside the function

    function mo_entry_published

    All possible formats are available in the link below –
    http://codex.wordpress.org/Formatting_Date_and_Time

    And you can find the shortcode in framework/shortcodes/posts-shortcodes.php ..

    For translation:
    You can learn from http://www.solostream.com/blog/tutorials/translate-wordpress-theme/ about translating your site into your language. Pls make sure you add the entry for your language into wp-config.php file like this –

    define (‘WPLANG’, ‘fr_FR’);
    Pls use the pot files in ‘extinct/languages’ folder as a template to create .po files.http://www.poedit.net/ -Poedit is the popular free editor for creating .po and the corresponding binary .mo files.

    You may need to do an update in POEdit to see all the strings.

    Check the Codex page to give your file the right name:
    https://make.wordpress.org/polyglots/teams/

    #25216
    Stefacchio
    Participant

    Good. Can I modify framework/functions/post-functions.php in child theme to avoid lost changes on future updates?

    regards

    #25223
    Veena
    Moderator

    To prevent these changes from future updates you can add modified code in your child theme’s function.php file .
    You just need to copy the modified function to your child theme’s function.php file.

    Pls check this post – http://support.livemeshthemes.com/forums/topic/parent-child-theme-question/#post-22413

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘Extinct Theme Support’ is closed to new topics and replies.