Author: Per Thykjaer Jensen

  • Orbisius Child Theme Creator

    Orbisius is a no-nonsense child theme creator plugin that’s super easy to use. Just follow the instructions in the video.

    Child Theme Creator by Orbisius

     

  • Open Streetmap API (embed)



    View Larger Map

    Here Open Street Maps is embedded via a simple i-frame – but it’s just a standard map. Not much Leaflet or Mapbox styling is possible when we use the OSM embed options. But at least you may add a marker via the OSM web page. As far as I can see the marker is made via Leaflet somehow.

    Since the AUH is a behemoth building complex. But you can use the pointer in order to pinpoint an entrance or building.

  • WP Workshop @ DigiDays 15.11. 2017

    Workshop: News in WordPress4.8 – the REST API,

    by Per Thykjaer Jensen

    Did you know that you can create WordPress pages in  JavaScript? Or that WordPress isn’t limited to just the browser any more? With the REST API you can fetch the content of your blog native on any device.

    But what is REST API and how to use it? Find out – visit my workshop at Digidays at the 15th november 2017 at Business Academy Aarhus.

    Click an read WordPress in the Classroom.
    The workshop is based on my new e-book.

    The workshop is of course based on my new book “WordPress in the Classroom” (see page 98). You can download the e-book for free, and even read it online, click here.

     

  • ER-Diagram Symbols

    Above you see the atomic building blocks of the ER-Diagram:

    • Entity
    • Attribute
    • Relation
    • Carninalities (Crow’s feet notation) one, zero-or-one, zero-or-many, one-or-many, many.

    From Requrements to Deployment

    Model inspired by Jukić et al.

    ER-Diagram

    This ER-Diagram is inspired by some of the tables in his sample database

     

    Database Implementation

    Here are Ben Forta’s tables in PhpMyAdmin “design viewW.

    During implementation you will create the tables and structure.

    Note that you have to design the data as integers, numbers, etc.:

    • cust_id = int(11)
    • cust_name = char(50)

    The customers table in ER-diagram form.

    Normalizing

     

    In the diagram the cardinalities have to be normalized. Here are a few solutions to typical problems.

     

    TIP: From ER-diagram to HTML form

    Look at the attributes. Create an input for each field. Then use the INSERT keyword.

  • Project Status 2016 – 2017

    Project Status: 2016 – 2017

    Project and impact
    Project and impact

    From 10:00 I will present the research project in auditorium A @ Sønderhøj 30, Viby, Denmark.

    The presentation is the formal end of the research project. I will present the upcoming e-book “WordPress in the Classroom” – and how the research project helped writing the book.

    Cover: WordPress in the Classroom
    Cover: WordPress in the Classroom
  • Proofreading

    Just received the manuscript from the code proof reader. Now the e-book is on it’s way to the english proof reader.

    The game’s afoot.

  • Create a Stunning Portfolio with WordPress

    Multimusen's costum front-page.php
    Multimusen’s costum front-page.php (september 2017). The layers are animated by a parallax script.

    For multimedia designer an online portfolio is a must. The industry expect you to have one. But what if you have found a nice open source theme, but you need a really stunning front page? Or a costum gallery for your productions? Or a kick ass CV?

    Step 1) Create a Child Theme

    The code presented in this tutorial is based on my tw17child. The child theme is based on the Twenty Seventeen theme. The code is available on Github.

    1. Install your open source theme via the Dashboard or by uploading a zip file.
    2. Create a folder with the name of your child theme.
    3. Then create a new file in the folder. Name the file style.css:
    /*
    Theme Name:   Twenty Seventeen Child
    Theme URI:    http://example.com/twenty-fifteen-child/
    Description:  Twenty Seventeen Child Theme
    Author:       Per Thykjær Jensen
    Author URI:   https://multimusen.dk
    Template:     twentyseventeen
    Version:      1.0.0
    License:      GNU General Public License v2 or later
    License URI:  http://www.gnu.org/licenses/gpl-2.0.html
    Tags:         one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
    Text Domain:  tw17child
    */
    

    As soon as the style.css is ready you’ll be able to see the child theme in the Dashboard. But the styles are not loaded. In WordPress styles and scripts are loaded via the enqueue function in functions.php.

    1. Create a new empty file. Save it as functions.php.
    2. Add styles by enqueue:
    /**
    * Styles: both parent and child
    */
    function my_theme_enqueue_styles() {
      $parent_style = 'parent-style';
    
      wp_enqueue_style( $parent_style,
      get_template_directory_uri()
      . '/style.css' );
      wp_enqueue_style( 'child-style',
      get_stylesheet_directory_uri() . '/style.css',
      array( $parent_style ),
      wp_get_theme()->get('Version')
      );
    }
    add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
    

    You can add more scripts and stylesheets to this function if you want to after a similar manner.

    That’s it! Your child theme is ready. Now it’s time for your creative tweaks.

     

    Step 2) Create Costum Content

    Let’s say that you want a costum frontpage:

    1. In the child theme create a new file.
    2. Save the file as front-page.php

    Add some content to the page, e.g.

    <h1>Hello World</h1>

    OK, I admit that this is not the most stunning design, you’ve ever laid your eyes upen. But have a look at your frontpage. It’ll display a “Hello World” as expected. You did not use one line of PHP or WordPress template tags. There’s no loop either.

    “What can you deduce from this, Sherlock?”

    “The game’s afoot, Watson!”

    Actually you can add any code you fancy. You don’t need to follow any restrictions made by the original theme. Now you are able to hardcode a cool splash for your website. If you want to, you can add wp_head() and wp_footer() in the code, e.g.

    <?php wp_head(); ?>
    </head>
    

    If you do so WordPress will enable the admin bar and add the WordPress head and footer scritpts and styles from the theme.

    Step 3) How to name the files

    The template hierarchy

    Actually you can modify any page or post after a similar manner. The secret is naming your costum files correctly, and here the template hierarchy diagram is the key we need. In the diagram you can find the front-page.php. Here are a few samples:

    • A page for categories: category.php
    • Costum design for a category with the slug icecream: category-icecream.php
    • A post with the slug whatever: page-whatever.php

    If you don’t add a loop to the page, you can only use hardcoded content on your costum pages.

    Sometimes that’s exactly what we need.

    Now you’re able to create a bunch of very personal costum pages for your content, such as:

    • Galleries
    • Animations
    • CV
    • Portfolio pages
    • Costum author pages

     

     

     

  • Drone hijacked on stage

    @FrontTrends, Warsaw 2017.

  • Front Trends Impressions

    The Front Trends Conference in Warsaw 2017 focused on front end development.

  • Front Trends Warsaw 2017

    Map: Open Street Map, Leaflet overlays, Mapbox costum map.
    Warsaw: hotel, and some venues.

    We’re on our way to the Front Trends Conference in Warsaw. Five lecturers from the EAAA will attend the conference this evening.

    “Front-Trends is one of Europe’s most established annual conferences for professional front-end developers to meet, learn and get inspired.”

    Where and SoMe
    Some Sparkling Speakers

    Many interesting speakers are coming. Among these talks I’d like to hear:

    • Vitaly Friedman “Big Bang Redesign: Smashing Magazine’s 2017” on Wednesday, May 24 at 11:20
    • Sam Bellen “I didn’t know the browser could do that!” Wednesday, May 24 at 12:20
    • Val Head “Motion In Design Systems: Animation, Style Guides, and the Design Process” Thursday, May 25 at 11:50
    Airport Links

    Are we boarding, or what …

  • Twenty Fifteen Child Theme

    Twenty Fifteen Child Theme
    Twenty Fifteen Child Theme

    So I’ve implemented a child theme for this research blog. For a while I’ve used Twenty Fifteen, because it’s a blog-oriented theme. But I have to hack some costum pages for the research project. I need pages that map the project, and pages that’ll sum up the proceedings of the present blog.

    That’s a job for a child theme!

    The code for the child theme is available on Github.

Enable Notifications OK No thanks

We use cookies - more information

Multimusen.dk will set a few cookies from Doubleclick, Google and the Social Media plugins they ay set some cookies. Some of my pages use APIs - such as YouTube, LinkedIn, Google Fonts, Google Maps, Mapbox, Spotify, Jetpack, Twitter, Facebook &c.. Such plugins may set the odd cookie.

Close