2016-09-08, 03:51:58
You can check the wiki on template tags. http://get-simple.info/wiki/themes:template_tags
You don't really need php knowledge just know what these template tags do and where you position them.
It's also good to know the file structure of a GS site. Then you see that the uploads folder is: /data/uploads , while your theme folder is somewhere in /theme
You can see here that the /data/uploads folder is supposed to be in the theme location, which is actually not the case.
If you would use instead something like:
You don't really need php knowledge just know what these template tags do and where you position them.
It's also good to know the file structure of a GS site. Then you see that the uploads folder is: /data/uploads , while your theme folder is somewhere in /theme
Code:
img src="<?php get_theme_url(); ?>/data/uploads/static_tiles/dj-qf-logo-links.jpg
You can see here that the /data/uploads folder is supposed to be in the theme location, which is actually not the case.
If you would use instead something like:
Code:
img src="<?php get_site_url(); ?>/data/uploads/static_tiles/dj-qf-logo-links.jpg